Use poetry for dependency management

This commit is contained in:
Sonny 2020-04-13 17:05:46 +02:00
parent cda2654573
commit e495d7c188
21 changed files with 1252 additions and 75 deletions

View file

@ -1,5 +1,5 @@
#!/bin/bash
# This file should only be used in conjuction with docker-compose
python /app/src/manage.py migrate
python /app/src/manage.py runserver 0.0.0.0:8000
poetry run /app/src/manage.py migrate
poetry run /app/src/manage.py runserver 0.0.0.0:8000