listen on all ips when running the server

This commit is contained in:
Andreas Zweili 2019-10-20 22:59:32 +02:00
parent 5c44591010
commit 879ac4e666
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ run: venv
export DJANGO_SETTINGS_MODULE=sensors.settings.production; \
./sensors/manage.py makemigrations; \
./sensors/manage.py migrate; \
./sensors/manage.py runserver; \
./sensors/manage.py runserver 0:8000; \
)
test: venv/development