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 runserveror via Docker:
$ docker-compose up --buildalternatively, if you have a container already build-up:
$ docker-compose upproject 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