mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-18 01:34:00 -05:00
Add OS services catalog (#160)
This commit is contained in:
37
services/os-services.json
Normal file
37
services/os-services.json
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"id": "core",
|
||||||
|
"name": "BlackRoad OS Core",
|
||||||
|
"kind": "backend",
|
||||||
|
"repo": "https://github.com/BlackRoad-OS/blackroad-os-core",
|
||||||
|
"healthUrl": "https://core.blackroad.systems/health"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "operator",
|
||||||
|
"name": "BlackRoad OS Operator",
|
||||||
|
"kind": "backend",
|
||||||
|
"repo": "https://github.com/BlackRoad-OS/blackroad-os-operator",
|
||||||
|
"healthUrl": "https://operator.blackroad.systems/health"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "web",
|
||||||
|
"name": "BlackRoad OS Web",
|
||||||
|
"kind": "frontend",
|
||||||
|
"repo": "https://github.com/BlackRoad-OS/blackroad-os-web",
|
||||||
|
"healthUrl": "https://blackroad.systems/api/health"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "prism-console",
|
||||||
|
"name": "Prism Console",
|
||||||
|
"kind": "frontend",
|
||||||
|
"repo": "https://github.com/BlackRoad-OS/blackroad-os-prism-console",
|
||||||
|
"healthUrl": "https://console.blackroad.systems/api/health"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "docs",
|
||||||
|
"name": "BlackRoad OS Docs",
|
||||||
|
"kind": "frontend",
|
||||||
|
"repo": "https://github.com/BlackRoad-OS/blackroad-os-docs",
|
||||||
|
"healthUrl": "https://docs.blackroad.systems/api/health"
|
||||||
|
}
|
||||||
|
]
|
||||||
11
services/types.ts
Normal file
11
services/types.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
export type ServiceKind = "backend" | "frontend";
|
||||||
|
|
||||||
|
export interface OsService {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
kind: ServiceKind;
|
||||||
|
repo: string;
|
||||||
|
healthUrl: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type OsServiceCatalog = OsService[];
|
||||||
Reference in New Issue
Block a user