15 lines
322 B
Python
15 lines
322 B
Python
"""
|
|
Application entry point.
|
|
"""
|
|
|
|
import os
|
|
from app import create_app
|
|
from app.config.config import config
|
|
|
|
# Get configuration from environment or use default
|
|
config_name = os.environ.get('FLASK_CONFIG', 'default')
|
|
app = create_app(config[config_name])
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', port=5000)
|