diff --git a/api_docs.html b/api_docs.html
deleted file mode 100644
index 1455f4942..000000000
Binary files a/api_docs.html and /dev/null differ
diff --git a/apps/api/routers.py b/apps/api/routers.py
deleted file mode 100644
index 07342c457..000000000
--- a/apps/api/routers.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from fastapi import APIRouter
-
-router = APIRouter()
-
-
-@router.get("/health")
-def health():
- return {"ok": True, "service": "api"}
diff --git a/init-tables.sql b/init-tables.sql
deleted file mode 100644
index 07aeec681..000000000
--- a/init-tables.sql
+++ /dev/null
@@ -1,14 +0,0 @@
--- Deprecated schema snapshot.
---
--- Runtime schema creation is currently owned by SQLAlchemy models in:
--- packages/adapters/sqlalchemy_impl/models.py
---
--- Do not apply this file to staging or production. It is retained only for
--- historical reference while the project migrates toward a proper Alembic flow.
--- Applying it would create columns such as assets.library_id/storage_key/mime_type
--- that conflict with the current runtime table shape.
-
-DO $$
-BEGIN
- RAISE EXCEPTION 'init-tables.sql is deprecated. Use SQLAlchemy runtime schema initialization / future Alembic migrations instead.';
-END $$;