open port 8000 in the Makefile

This commit is contained in:
Andreas Zweili 2022-03-29 21:10:41 +02:00
parent d6090ad3b3
commit c968c5eca9
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ SHELL=/usr/bin/env bash
run: setup
( \
find . -name __pycache__ -o -name "*.pyc" -delete; \
sudo iptables -I INPUT -p tcp --dport 8000 -j ACCEPT
python manage.py runserver 0.0.0.0:8000; \
)