mirror of
https://github.com/dobin/avred
synced 2026-06-08 13:54:13 +00:00
7 lines
148 B
Python
7 lines
148 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, debug=True)
|