This commit is contained in:
Egor Matveev 2021-09-09 09:38:18 +03:00
parent 388a696405
commit a45d3e104b
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "-w#*mn6*fa8a=(-c0@klx&$vl%hpiy&l(u*3%0a#2)wdt##(z2"
DEPLOY = True
DEPLOY = False
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = not DEPLOY

View File

@ -3,4 +3,4 @@ from SprintLib.BaseDaemon import BaseDaemon
class Daemon(BaseDaemon):
def command(self):
return "python manage.py runserver 0.0.0.0:443"
return "python manage.py runserver 0.0.0.0:80"