File tree Expand file tree Collapse file tree 1 file changed +89
-0
lines changed Expand file tree Collapse file tree 1 file changed +89
-0
lines changed Original file line number Diff line number Diff line change
1
+ # ####
2
+ # Documentation
3
+ # Redwood: https://render.com/docs/deploy-redwood
4
+ # YAML (all config values): https://render.com/docs/yaml-spec
5
+ # ####
6
+
7
+ services :
8
+ - type : redis
9
+ name : github-api-cache
10
+ ipAllowList : [] # only allow internal connections
11
+ plan : free
12
+
13
+ - name : konfig-demo-portal
14
+ type : web
15
+ env : node
16
+ buildCommand : ./build-render.sh
17
+ startCommand : yarn start;
18
+ repo : https://github.com/konfig-dev/konfig
19
+ rootDir : generator/konfig-next-app
20
+ plan : standard
21
+ autoDeploy : false
22
+ buildFilter :
23
+ paths :
24
+ - generator/konfig-dash/**/*
25
+ domains :
26
+ - demo.konfigthis.com
27
+ envVars :
28
+ - key : GITHUB_API_REDIS_CACHE
29
+ fromService :
30
+ name : github-api-cache
31
+ type : redis
32
+ property : connectionString
33
+ - key : PYTHON_RCE_API_HOST_PORT
34
+ fromService :
35
+ name : konfig-python-remote-code-executor
36
+ type : pserv
37
+ property : hostport
38
+ - fromGroup : cloudflare
39
+ - fromGroup : openai
40
+ - fromGroup : github
41
+ - key : OPENAI_API_KEY
42
+ sync : false
43
+ - key : NPM_TOKEN
44
+ value : DUMMY_VALUE
45
+ - key : PORT
46
+ value : 10000
47
+
48
+ - type : pserv
49
+ name : konfig-python-remote-code-executor
50
+ env : python
51
+ buildCommand : ./build-render.sh
52
+ startCommand : ./start.sh
53
+ repo : https://github.com/konfig-dev/konfig
54
+ rootDir : generator/konfig-python-remote-code-executor
55
+ envVars :
56
+ - key : PYTHON_VERSION
57
+ value : 3.9.16
58
+ - key : PORT
59
+ value : 8000
60
+
61
+ envVarGroups :
62
+ - name : cloudflare
63
+ envVars :
64
+ - key : CLOUDFLARE_IMAGES_API_KEY
65
+ sync : false
66
+ - name : openai
67
+ envVars :
68
+ - key : OPENAI_API_KEY
69
+ sync : false
70
+ - name : konfig-changeset-bot
71
+ envVars :
72
+ - key : APP_ID
73
+ sync : false
74
+ - key : GITHUB_CLIENT_ID
75
+ sync : false
76
+ - key : GITHUB_CLIENT_SECRET
77
+ sync : false
78
+ - key : PRIVATE_KEY
79
+ sync : false
80
+ - key : WEBHOOK_SECRET
81
+ sync : false
82
+ - name : npm
83
+ envVars :
84
+ - key : NPM_TOKEN
85
+ sync : false
86
+ - name : github
87
+ envVars :
88
+ - key : GITHUB_APP_PRIVATE_KEY
89
+ sync : false
You can’t perform that action at this time.
0 commit comments