GphaHoa156
Add application file
8b3b66c
raw
history blame contribute delete
166 Bytes
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)