add bgs
ci/woodpecker/push/woodpecker Pipeline was successful Podrobnosti

This commit is contained in:
tree 2023-07-11 15:34:24 +02:00
rodič 5c0cf77804
revize ac7e2b943b
4 změnil soubory, kde provedl 19 přidání a 0 odebrání

Zobrazit soubor

@ -0,0 +1,2 @@
name: Bluesky BGS
url: https://bsky.social

Zobrazit soubor

@ -0,0 +1,2 @@
name: Bluesky Sandbox BGS
url: https://bgs.bsky-sandbox.dev

14
schema/bgs-instance.yaml Normal file
Zobrazit soubor

@ -0,0 +1,14 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string
url:
type: string
format: url

Zobrazit soubor

@ -8,6 +8,7 @@ const SCHEMA_MAP = {
clients: "client",
federations: "federation",
'plc-directories': 'plc-directory',
'bgs-instances': 'bgs-instance',
};
async function loadYAML(fn) {