mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
6 lines
147 B
Python
6 lines
147 B
Python
from waitress import serve
|
|
from app import create_app
|
|
|
|
if __name__ == '__main__':
|
|
app = create_app()
|
|
serve(app, host='0.0.0.0', port=8025)
|