forked from parameter1/base-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.graphqlconfig
81 lines (81 loc) · 2.45 KB
/
.graphqlconfig
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
77
78
79
80
81
{
"projects": {
"base-cms": {
"schemaPath": "schema.graphql",
"extensions": {
"endpoints": {
"dev": {
"url": "http://0.0.0.0:10002",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"aerilon-staging": {
"url": "https://aerilon.graphql-staging.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"caprica-staging": {
"url": "https://caprica.graphql-staging.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"gemenon-staging": {
"url": "https://gemenon.graphql-staging.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"picon-staging": {
"url": "https://picon.graphql-staging.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"aerilon-production": {
"url": "https://aerilon.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"aerilon-v0x-production": {
"url": "https://aerilon-v0x.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}",
"x-cdn-image-hostname": "base.imgix.net",
"x-cdn-asset-hostname": "media.cygnus.com"
}
},
"caprica-production": {
"url": "https://caprica.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"caprica-v0x-production": {
"url": "https://caprica-v0x.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}",
"x-cdn-image-hostname": "base.imgix.net",
"x-cdn-asset-hostname": "media.cygnus.com"
}
},
"gemenon-production": {
"url": "https://gemenon.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
},
"picon-production": {
"url": "https://picon.graphql.base-cms.io",
"headers": {
"x-tenant-key": "${env:TENANT_KEY}"
}
}
}
}
}
}
}