-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.75 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "techcase",
"private": true,
"scripts": {
"dev:web": "pnpm --dir apps/web dev",
"build:web": "pnpm --dir apps/web build",
"lint:web": "pnpm --dir apps/web lint",
"dev:backend": "cd apps/backend && uv run uvicorn app.main:app --reload --host 0.0.0.0 --port 8000",
"db:migrate": "cd apps/backend && uv run alembic upgrade head",
"db:history": "cd apps/backend && uv run alembic history",
"db:seed": "cd apps/backend && uv run python -m app.seeds.seed_sources",
"crawl:rss": "cd apps/backend && uv run python -m app.crawler.rss",
"crawl:sitemap": "cd apps/backend && uv run python -m app.crawler.sitemap",
"ingest:scheduled": "cd apps/backend && uv run python -m app.jobs.scheduled_ingest",
"keywords:extract": "cd apps/backend && uv run python -m app.keywords.extractor",
"llm:summarize": "cd apps/backend && uv run python -m app.summaries.generator",
"search:reindex": "cd apps/backend && uv run python -m app.search.indexer",
"suggest:reindex": "cd apps/backend && uv run python -m app.search.suggestions",
"suggest:audit": "cd apps/backend && uv run python -m app.search.suggestion_audit",
"search:alias-audit": "cd apps/backend && uv run python -m app.search.query_alias_audit",
"search:ambiguous-audit": "cd apps/backend && uv run python -m app.search.ambiguous_query_audit",
"search:evaluate": "cd apps/backend && uv run python -m app.search.evaluation.evaluator",
"search:audit": "cd apps/backend && uv run python -m app.search.evaluation.audit",
"search:keyword-probe": "cd apps/backend && uv run python -m app.search.evaluation.keyword_probe",
"infra:up": "docker compose -f infra/docker-compose.yml up -d",
"infra:down": "docker compose -f infra/docker-compose.yml down"
}
}