7 lines
211 B
Python
7 lines
211 B
Python
from app import create_app
|
|
|
|
# Call the application factory function to construct a Flask application
|
|
# instance using the development configuration
|
|
application = create_app('config/flask.cfg')
|
|
application.run()
|