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