swingmusic/server/manage.py
geoffrey45 1caef9d3a2 add file watcher
- disable double flask instances
- remove unused files
- play song by id (instead of from nginx)
2022-02-16 15:02:36 +03:00

6 lines
164 B
Python

from app import create_app
if __name__ == '__main__':
app = create_app()
app.run(debug=True, threaded=True, host="0.0.0.0", port=9876, use_reloader=False)