correct the Makefile

This commit is contained in:
Andreas Zweili 2022-03-29 21:14:33 +02:00
parent 781df9eabf
commit d66e5cc027
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; \
sudo iptables -I INPUT -p tcp --dport 8000 -j ACCEPT
sudo iptables -I INPUT -p tcp --dport 8000 -j ACCEPT; \
python manage.py runserver 0.0.0.0:8000; \
)