Starting Your Pinax Project Blog
Following the instructions in the Getting A Pinax Project Up and Running section of this tutorial, create a blog project using blog
as the project type.
$ pinax start blog <project-name>
The pinax.blog
and dependency pinax.images
should be included in your INSTALLED_APPS
setting:
INSTALLED_APPS = [
# other apps
"pinax.blog",
"pinax.images",
]
And pinax.blog.urls
should be included in your project urlpatterns:
urlpatterns = [
# other urls
url(r"^blog/", include("pinax.blog.urls", namespace="pinax_blog")),
]