~starkingdoms/starkingdoms

ref: 3f9784408f5c43e366106d0f547d80d9b33ffa37 starkingdoms/starkingdoms-client/src/config.json -rw-r--r-- 1.0 KiB
3f978440 — ghostlyzsh attaching and despawning modules works 2 years ago
                                                                                
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
{
  "servers": {
    "stk-prod": {
      "name": "StarKingdoms",
      "clientHubUrl": "wss://starkingdoms.io/hub",
      "apiBaseUrl": "https://api.starkingdoms.io",
      "isProduction": true,
      "isDevelopment": false,
      "isPrimary": true
    },
    "stk-beta": {
      "name": "StarKingdoms Beta",
      "clientHubUrl": "wss://beta.starkingdoms.io/hub",
      "apiBaseUrl": "https://api.beta.starkingdoms.io",
      "isProduction": false,
      "isDevelopment": false,
      "isPrimary": false
    },
    "stk-unstable": {
      "name": "StarKingdoms Unstable",
      "clientHubUrl": "wss://unstable.starkingdoms.io/hub",
      "apiBaseUrl": "https://api.unstable.starkingdoms.io",
      "isProduction": false,
      "isDevelopment": false,
      "isPrimary": false
    },
    "local-dev": {
      "name": "Local (Development)",
      "clientHubUrl": "ws://localhost:3000/hub",
      "apiBaseUrl": "http://localhost:8080",
      "isProduction": false,
      "isDevelopment": true,
      "isPrimary": false
    }
  }
}