responsive django personal blog app
virtualenv
$ virtualenv <env_name>
$ source <env_name>/bin/activate
(<env_name>) $ pip install -r path/to/requirements.txt
from project folder:
(<env_name>) $ python3 manage.py runserver
or via Docker
:
$ docker-compose up --build
alternatively, if you have a container already build-up:
$ docker-compose up
project will then be available at these hosts under port 8000
:
to load up test data from fixtures run this from project root directory:
$ python3 manage.py loaddata initial_data.json