6 lines
142 B
Python
6 lines
142 B
Python
import os
|
|
from app import app
|
|
|
|
if __name__ == "__main__":
|
|
port = int(os.environ.get("PORT", 5000))
|
|
app.run(host="0.0.0.0", port=port)
|