Spaces:
Sleeping
Sleeping
File size: 166 Bytes
8b3b66c | 1 2 3 4 5 6 7 | from app import create_app
from config import Config
app = create_app(Config)
if __name__ == "__main__":
app.run(debug=Config.DEBUG, host="0.0.0.0", port=7860) |