allow external access to dev server

This commit is contained in:
Andreas Zweili 2022-03-27 16:12:56 +02:00
parent d6ef2c156d
commit 5e2b7350ea
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ SHELL=/usr/bin/env bash
run: setup
( \
find . -name __pycache__ -o -name "*.pyc" -delete; \
python manage.py runserver; \
python manage.py runserver 0.0.0.0:8000; \
)
.PHONY: setup