Skip to content

Commit 27c8d8d

Browse files
committed
Remove unused stuff and clean types
1 parent daecdae commit 27c8d8d

File tree

32 files changed

+425
-1525
lines changed

32 files changed

+425
-1525
lines changed

.claude/settings.local.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(rm:*)",
5+
"Bash(grep:*)",
6+
"Bash(npm run build:*)",
7+
"Bash(curl:*)",
8+
"Bash(npm run lint:*)",
9+
"Bash(sed:*)",
10+
"Bash(find:*)",
11+
"Bash(npm run typecheck:*)",
12+
"Bash(npm install)",
13+
"Bash(ls:*)",
14+
"Bash(npx next lint:*)",
15+
"Bash(npx tsc:*)",
16+
"Bash(rg:*)",
17+
"Bash(npm run type-check:*)",
18+
"Bash(npx next build:*)"
19+
],
20+
"deny": []
21+
}
22+
}

backend/app/factory.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .config import get_settings
1010
from .database import create_tables
1111
from .logging_config import LoggingManager, request_id_var, request_start_time_var, get_logger
12-
from .routers import health, commits, binaries, environments, runs, benchmarks, upload, admin, public
12+
from .routers import health, commits, binaries, environments, benchmarks, upload, admin, public
1313

1414

1515
def create_app(settings=None) -> FastAPI:
@@ -152,7 +152,6 @@ async def startup_event():
152152
app.include_router(commits.router)
153153
app.include_router(binaries.router)
154154
app.include_router(environments.router)
155-
app.include_router(runs.router)
156155
app.include_router(benchmarks.router)
157156
app.include_router(upload.router)
158157
app.include_router(admin.router)

backend/app/routers/runs.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)