-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.example.json
More file actions
76 lines (76 loc) · 1.72 KB
/
Copy pathregistry.example.json
File metadata and controls
76 lines (76 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "./schema/registry.schema.json",
"version": 1,
"updated": "2026-01-01T00:00:00Z",
"ranges": {
"shared-db": { "start": 5430, "end": 5439 },
"my-api": { "start": 3000, "end": 3009 },
"my-game": { "start": 4000, "end": 4009 }
},
"projects": [
{
"id": "shared-db",
"name": "Shared Databases",
"path": null,
"category": "infrastructure",
"stack": ["postgres"],
"services": [
{
"name": "postgres-native",
"port": 5432,
"protocol": "tcp",
"process": "native",
"source": "manual"
}
]
},
{
"id": "my-api",
"name": "My API",
"path": "/home/user/projects/my-api",
"category": "project",
"stack": ["node", "postgres"],
"services": [
{
"name": "server",
"port": 3000,
"protocol": "http",
"process": "node",
"source": "manual"
},
{
"name": "postgres",
"port": 5433,
"protocol": "tcp",
"process": "docker",
"source": "manual",
"container": "my-api-db"
}
]
},
{
"id": "my-game",
"name": "My Game Server",
"path": "/home/user/projects/my-game",
"category": "hobby",
"stack": ["python", "redis"],
"services": [
{
"name": "game-server",
"port": 4000,
"protocol": "tcp",
"process": "python",
"source": "manual"
},
{
"name": "redis",
"port": 6379,
"protocol": "tcp",
"process": "docker",
"source": "manual",
"container": "game-redis"
}
]
}
]
}