diff --git a/Makefile b/Makefile index b8c606d..3ae3236 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,7 @@ SHELL=/bin/bash run: venv/production ( \ source venv/bin/activate; \ - export DJANGO_SETTINGS_MODULE=sensors.settings.production; \ - ./sensors/manage.py makemigrations; \ - ./sensors/manage.py migrate; \ - ./sensors/manage.py runserver 0:8000; \ + ./run.sh; \ ) test: venv/development