-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
51 lines (47 loc) · 1.31 KB
/
Copy pathrender.yaml
File metadata and controls
51 lines (47 loc) · 1.31 KB
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
services:
- type: web
name: shelfhelp
runtime: static
repo: https://github.com/MCBoarder289/shelf-help
branch: main
envVars:
- key: SKIP_INSTALL_DEPS
value: true
buildCommand: yarn; yarn build
staticPublishPath: dist
routes:
- type: rewrite
source: /bookChoices
destination: https://shelfhelp-api.onrender.com/bookChoices
- type: rewrite
source: /libraryCheck
destination: https://shelfhelp-api.onrender.com/libraryCheck
rootDir: frontend
pullRequestPreviewsEnabled: true
- type: web
name: shelfhelp-api
runtime: python
repo: https://github.com/MCBoarder289/shelf-help
branch: main
plan: free
envVars:
- key: PYTHON_VERSION
value: 3.12.3
region: ohio
buildCommand: pip install -r requirements.txt
startCommand: gunicorn --config geventlet-config.py --workers=1 --worker-class=gevent app:app -t 60 --keep-alive 60
rootDir: backend
pullRequestPreviewsEnabled: true
- type: web
name: shelfhelpanalytics
runtime: static
repo: https://github.com/MCBoarder289/shelf-help
branch: main
envVars:
- key: SKIP_INSTALL_DEPS
value: true
buildCommand: yarn; yarn build
staticPublishPath: dist
rootDir: analytics/app
pullRequestPreviewsEnabled: true
version: "1"