Added local server for development

This commit is contained in:
Vivek Santayana 2022-06-20 11:26:44 +01:00
parent 12207d1159
commit 90bc30757a

View File

@ -34,6 +34,7 @@ class Production(Config):
class Development(Config): class Development(Config):
APP_HOST = '127.0.0.1' APP_HOST = '127.0.0.1'
DEBUG = True DEBUG = True
SERVER_NAME = '127.0.0.1:5000'
SESSION_COOKIE_SECURE = False SESSION_COOKIE_SECURE = False
MAIL_SERVER = 'localhost' MAIL_SERVER = 'localhost'
MAIL_DEBUG = True MAIL_DEBUG = True