Phase 1 of AUDIT-2026-Q3.md item P1.1. app/main.py was referenced by Makefile, AGENTS.md, CONTRIBUTING.md, and external `uvicorn app.main:app` invocations, but the file did not exist (refactored to app/factory.py in a prior session — the docs were never updated). This restores the canonical entrypoint.
11 lines
287 B
Python
11 lines
287 B
Python
"""RMI backend entrypoint.
|
|
|
|
Delegates to app.factory.create_app. Keeps `uvicorn app.main:app` working
|
|
as the canonical launch path referenced by Makefile, AGENTS.md, and
|
|
CONTRIBUTING.md.
|
|
|
|
Phase 1 of AUDIT-2026-Q3.md, item P1.1.
|
|
"""
|
|
from app.factory import create_app
|
|
|
|
app = create_app()
|