-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrailway.json
More file actions
49 lines (49 loc) · 1.31 KB
/
railway.json
File metadata and controls
49 lines (49 loc) · 1.31 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://railway.app/schema.json",
"build": {
"builder": "NIXPACKS"
},
"deploy": {
"startCommand": "./bin/provnzero-proxy",
"healthcheckPath": "/health",
"healthcheckTimeout": 100,
"restartPolicyType": "ON_FAILURE",
"restartPolicyMaxRetries": 3,
"env": [
{
"key": "PORT",
"value": "3001"
},
{
"key": "OPENAI_BASE_URL",
"value": "https://api.openai.com/v1",
"description": "Base URL for OpenAI-compatible APIs (OpenAI, DeepSeek, OpenRouter, etc.)"
},
{
"key": "OPENAI_API_KEY",
"value": "",
"description": "Required for OpenAI-compatible outgoing calls"
},
{
"key": "ANTHROPIC_API_KEY",
"value": "",
"description": "Optional: Enable Anthropic provider"
},
{
"key": "DEEPSEEK_API_KEY",
"value": "",
"description": "Optional: Enable DeepSeek provider"
},
{
"key": "NIXPACKS_CARGO_WORKSPACE",
"value": "provnzero-proxy",
"description": "Internal: Targets the specific workspace member (Leave as is)"
},
{
"key": "NIXPACKS_RUST_BIN",
"value": "provnzero-proxy",
"description": "Internal: Targets the specific binary name (Leave as is)"
}
]
}
}