-
Notifications
You must be signed in to change notification settings - Fork 240
/
render-only-docs.yaml
58 lines (55 loc) · 1.47 KB
/
render-only-docs.yaml
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
#####
# Documentation
# Redwood: https://render.com/docs/deploy-redwood
# YAML (all config values): https://render.com/docs/yaml-spec
#####
services:
- type: redis
name: github-api-cache
ipAllowList: [] # only allow internal connections
plan: free
- name: konfig-demo-portal
type: web
env: node
buildCommand: ./build-render.sh
startCommand: yarn start;
repo: https://github.com/[REPLACE_ME]/konfig
rootDir: generator/konfig-next-app
plan: standard
autoDeploy: false
buildFilter:
paths:
- generator/konfig-dash/**/*
envVars:
- key: GITHUB_API_REDIS_CACHE
fromService:
name: github-api-cache
type: redis
property: connectionString
- key: PYTHON_RCE_API_HOST_PORT
fromService:
name: konfig-python-remote-code-executor
type: pserv
property: hostport
- key: CLOUDFLARE_IMAGES_API_KEY
sync: false
- key: GITHUB_APP_PRIVATE_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: NPM_TOKEN
value: DUMMY_VALUE
- key: PORT
value: 10000
- type: pserv
name: konfig-python-remote-code-executor
env: python
buildCommand: ./build-render.sh
startCommand: ./start.sh
repo: https://github.com/[REPLACE_ME]/konfig
rootDir: generator/konfig-python-remote-code-executor
envVars:
- key: PYTHON_VERSION
value: 3.9.16
- key: PORT
value: 8000