-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
53 lines (51 loc) · 1.43 KB
/
Copy pathrender.yaml
File metadata and controls
53 lines (51 loc) · 1.43 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
52
53
services:
- type: web
name: stress-detection-django
env: python
plan: free
buildCommand: |
pip install --upgrade pip
pip install -r requirements.txt
python manage.py makemigrations --noinput
python manage.py migrate --noinput
python manage.py collectstatic --noinput
startCommand: gunicorn stress_detection.wsgi:application
envVars:
- key: DJANGO_SETTINGS_MODULE
value: stress_detection.settings
- key: PYTHON_VERSION
value: 3.10
- key: DB_PATH
value: /opt/render/project/data/db.sqlite3
- key: SECRET_KEY
generateValue: true
- key: DEBUG
value: False
- key: ALLOWED_HOSTS
value: stress-detection-for-it-professionals.onrender.com
- key: EMAIL_HOST_USER
value: suragms2000@gmail.com
- key: EMAIL_HOST_PASSWORD
value: jwsv cemy mkkt mwcd
- type: web
name: rasa-server
env: python
plan: free
buildCommand: |
pip install --upgrade pip
pip install rasa
startCommand: rasa run --enable-api --cors "*" --port 5005
envVars:
- key: PYTHON_VERSION
value: 3.10
- type: web # ✅ Changed from `worker` to `web`
name: rasa-actions
env: python
plan: free
buildCommand: |
pip install --upgrade pip
pip install rasa-sdk
startCommand: rasa run actions --port 5055
envVars:
- key: PYTHON_VERSION
value: 3.10