-
Notifications
You must be signed in to change notification settings - Fork 0
/
grundstein-config.mjs
57 lines (50 loc) · 1.46 KB
/
grundstein-config.mjs
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
import { env } from 'grundstein/src/defaultConfig.mjs'
export const hosts = [
{
// the (internal!) root dns identifier of this pod
name: 'wiznwit.com',
fqdn: 'cloud.wiznwit.com',
// which ip addresses this server is reachable at. used by ssh to connect to the server.
// this option will disappear once pods get provisioned through the api.
ip: '157.245.23.135',
// the hostnames this pod will serve publicly,
// this is in addition to the hosts in the repositories list below
hostnames: [],
// which services should be installed and started on this pod?
services: [
// this service should run on only one pod.
// last to be decentralized, it is the certificate root until grundstein/gca exists.
'gps',
'grs',
'gms',
'gas',
],
// which repositories should gbs use to build from.
// these repositories will be watched and rebuilt when pushed to.
// in the future, the staging branch will also be served.
repositories: {
'wiznwit.com': {
host: 'github.com',
org: 'wiznwit',
repo: 'wiznwit.com',
branch: 'master',
},
'magic.wiznwit.com': {
host: 'github.com',
org: 'magic',
repo: 'magic.github.io',
branch: 'dev',
},
'8aces.org': {
host: 'github.com',
org: '8aces',
repo: '8aces.org',
branch: 'master',
},
},
},
]
export default {
hosts,
env,
}