"""
Entry point for running the application.
"""
import os
from app import create_app

# Create app with the appropriate configuration
config_name = os.environ.get('FLASK_ENV', 'development')
app = create_app(config_name)

if __name__ == '__main__':
    app.run(debug=app.config['DEBUG'])
