replace the make run commands with run.sh

This commit is contained in:
Andreas Zweili 2020-03-10 21:22:22 +01:00
parent 849e803664
commit 26aa800224
1 changed files with 1 additions and 4 deletions

View File

@ -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