7 lines
No EOL
144 B
Python
7 lines
No EOL
144 B
Python
from app import create_app
|
|
|
|
# Create application instance - production
|
|
app = create_app('production')
|
|
|
|
if __name__ == '__main__':
|
|
app.run() |