-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.example.json
More file actions
41 lines (41 loc) · 1.06 KB
/
apps.example.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"version": 1,
"proxyPort": 80,
"tld": "localhost",
"dashboardHost": "dash",
"apps": [
{
"name": "notes-api",
"hostname": "notes-api.localhost",
"port": 4010,
"path": "~/code/notes-api",
"repo": "git@github.com:yourname/notes-api.git",
"claudeMd": "~/code/notes-api/CLAUDE.md",
"startCmd": "npm run dev -- --port 4010",
"description": "Personal notes API",
"managedBy": "devkit"
},
{
"name": "billing-admin",
"hostname": "billing-admin.localhost",
"port": 4020,
"path": "~/code/billing-admin",
"repo": "git@github.com:yourname/billing-admin.git",
"claudeMd": null,
"startCmd": "pnpm dev --port 4020",
"description": "Internal billing dashboard",
"managedBy": "devkit"
},
{
"name": "postgres",
"hostname": "postgres.localhost",
"port": 5432,
"path": null,
"repo": null,
"claudeMd": null,
"startCmd": null,
"description": "Local Postgres (managed externally)",
"managedBy": "external"
}
]
}