-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrender.yaml
35 lines (35 loc) · 857 Bytes
/
render.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
version: "1"
services:
- type: web
name: nodejs-service
runtime: node
repo: https://github.com/Belalaskaik/CandleVision-
plan: starter
envVars:
- key: PUPPETEER_SKIP_DOWNLOAD
sync: false
- key: NODE_ENV
sync: false
region: oregon
buildCommand: |
apt-get update &&
apt-get install -y chromium-browser &&
npm install
startCommand: node capture.js
sizeGB: 1
# Exported from Render on 2024-05-09T06:38:41Z
- type: web
name: fastapi-app
runtime: python
repo: https://github.com/Belalaskaik/CandleVision-
plan: starter
envVars:
- key: PYTHONUNBUFFERED
sync: false
region: oregon
buildCommand: pip install -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port 10000
disk:
name: fastapi-storage
mountPath: /app/storage
sizeGB: 1