"""
app.py

Purpose:
  Application initializer and entrypoint. This file remains at the project root
  (Apache WSGI imports `app:application`). All business logic, routes, and
  helpers live in `app_modules/`. This module wires the Flask app using
  `app_modules.initializer.create_app()`.
"""

from app_modules.initializer import create_app

app = create_app()
application = app

if __name__ == '__main__':
    app.run(host='127.0.0.1', port=5001, debug=True)


