swingmusic/server/manage.py
2021-12-15 15:20:12 +03:00

7 lines
147 B
Python

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