test2123213
33 行
695 B
JSON
33 行
695 B
JSON
{
|
|
"schema_version": 1,
|
|
"resources": [
|
|
{
|
|
"kind": "static_site",
|
|
"name": "web",
|
|
"source": "frontend/dist",
|
|
"routes": [{"path": "/"}]
|
|
},
|
|
{
|
|
"kind": "function",
|
|
"name": "api",
|
|
"source": "functions/api",
|
|
"runtime": "nodejs20",
|
|
"routes": [{"path": "/api/cloud/*"}],
|
|
"env": {
|
|
"DATABASE_URL": "ref:app_db.connection_url",
|
|
"OPENAI_BASE_URL": "ref:models.base_url",
|
|
"OPENAI_API_KEY": "ref:models.api_key",
|
|
"OPENAI_MODEL": "ref:models.model"
|
|
}
|
|
},
|
|
{
|
|
"kind": "postgres_database",
|
|
"name": "app_db"
|
|
},
|
|
{
|
|
"kind": "model_router",
|
|
"name": "models"
|
|
}
|
|
]
|
|
}
|