-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
32 lines (30 loc) · 893 Bytes
/
Copy pathrender.yaml
File metadata and controls
32 lines (30 loc) · 893 Bytes
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
databases:
- name: curaframe-db
databaseName: curaframe
plan: free
postgresMajorVersion: 18
services:
- type: web
name: curaframe-web
env: python
buildCommand: pip install -r requirements.txt && pip install -e .
startCommand: uvicorn apps.web.main:app --host 0.0.0.0 --port $PORT
plan: starter
envVars:
- key: DATABASE_URL
fromDatabase:
name: curaframe-db
property: connectionString
- key: CURAFRAME_SECURE_COOKIES
value: "1"
- type: web
name: curaframe-console
env: python
buildCommand: pip install -r requirements.txt && pip install -e .
startCommand: streamlit run apps/console_streamlit/app.py --server.port $PORT --server.address 0.0.0.0
plan: free
envVars:
- key: DATABASE_URL
fromDatabase:
name: curaframe-db
property: connectionString