Files
profilarr/backend/run.py
2025-02-05 16:09:58 +10:30

6 lines
118 B
Python

from app import create_app
if __name__ == '__main__':
app = create_app()
app.run(debug=True, host='0.0.0.0')