Files
static-site-hosting/run.py
T

14 lines
350 B
Python
Raw Normal View History

2025-02-18 01:27:40 +00:00
from waitress import serve
import os
from app import create_app, db, config
app = create_app()
if __name__ == "__main__":
os.makedirs(app.config["UPLOAD_FOLDER"], exist_ok=True)
2025-11-12 10:37:09 -05:00
print(f"listening on port {config.Config.PORT}")
2025-02-18 01:27:40 +00:00
with app.app_context():
db.create_all()
serve(app, host="0.0.0.0", port=config.Config.PORT)