mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
move PORT and DEBUG into WebHost config
This commit is contained in:
@@ -7,8 +7,6 @@ from waitress import serve
|
||||
|
||||
from WebHost.models import db, Room, db_session, select
|
||||
|
||||
DEBUG = False
|
||||
port = 80
|
||||
|
||||
|
||||
def autohost(config: dict):
|
||||
@@ -47,8 +45,8 @@ if __name__ == "__main__":
|
||||
logging.info(f"Updated config from {configpath}")
|
||||
db.bind(**app.config["PONY"])
|
||||
db.generate_mapping(create_tables=True)
|
||||
if DEBUG:
|
||||
if app.config["DEBUG"]:
|
||||
autohost(app.config)
|
||||
app.run(debug=True, port=port)
|
||||
app.run(debug=True, port=app.config["PORT"])
|
||||
else:
|
||||
serve(app, port=port, threads=app.config["WAITRESS_THREADS"])
|
||||
serve(app, port=app.config["PORT"], threads=app.config["WAITRESS_THREADS"])
|
||||
|
@@ -26,6 +26,8 @@ def allowed_file(filename):
|
||||
app = Flask(__name__)
|
||||
Pony(app)
|
||||
|
||||
app.config["DEBUG"] = False
|
||||
app.config["PORT"] = 80
|
||||
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
|
||||
app.config['MAX_CONTENT_LENGTH'] = 4 * 1024 * 1024 # 4 megabyte limit
|
||||
# if you want persistent sessions on your server, make sure you make this a constant in your config.yaml
|
||||
|
Reference in New Issue
Block a user