4 lines
90 B
Python
4 lines
90 B
Python
#!/usr/bin/python3
|
|
from app import app
|
|
app.run(debug=False, host='127.0.0.1', port=5001)
|