This is my own personal blog. I was kind of messing around and it's a bit eccentric, but you can use it if you like.
-
Clone this repository with
git clone --recursive github.com/qualiaa/blog
. -
Install the package with
pip install ./blog
. -
In your Django project's
settings.py
, add"jamie_blog"
toINSTALLED_APPS
:INSTALLED_APPS = [ ... "jamie_blog", ]
-
Copy the
BLOG_
settings fromdocker/settings.py
and adjust to suit your needs. -
Include the
jamie_blog
URLconf in your project'surls.py
:path('blog/', include('jamie_blog.urls')),
-
Start the development server with
python manage.py runserver
and visit http://127.0.0.1:8000/blog/ to see the blog in action.
-
Clone this repository with
git clone --recursive github.com/qualiaa/blog
. -
Configure
docker/settings.py
to suit your needs. -
You may want to make
wip
folder and add it as bind-mount indocker/docker-compose.yml
. -
Run
docker-compose -f docker/docker-compose up