This commit is contained in:
2025-01-04 14:40:52 +01:00
commit 053272b71a
13 changed files with 385 additions and 0 deletions

15
app.py Normal file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright Hersel Giannella
from quart import Quart
from config import config
from routes.home import route_home
app = Quart(__name__)
app.register_blueprint(route_home)
if __name__ == '__main__':
app.run(debug=config.DEBUG, host=config.APP_HOST, port=config.APP_PORT)