- Clone repository
- Create
.env
file insidesayit/settings/
with following variablesSECRET_KEY='<random-django-secret-key>' ALLOWED_HOSTS=<allowed-hosts-seperated-by-spaces> HASHIDS_SALT='<random-characters-as-salt>'
- Start development server as follows, site will be accessible at http://localhost:8000/
python3 manage.py runserver --settings="sayit.settings.dev"
- https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Tutorial_local_library_website
- https://testdriven.io/blog/dockerizing-django-with-postgres-gunicorn-and-nginx/
MIT