-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
52 lines (41 loc) · 882 Bytes
/
Copy pathrender.yaml
File metadata and controls
52 lines (41 loc) · 882 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
services:
# SPRING BOOT BACKEND
- type: web
name: solemate-backend
runtime: docker
rootDir: backend
plan: free
envVars:
- key: PORT
value: "8080"
- key: SPRING_BASE_URL
sync: false
- key: DATABASE_URL
sync: false
- key: DB_USERNAME
sync: false
- key: DB_PASSWORD
sync: false
- key: GEMINI_API_KEY
sync: false
buildFilter:
paths:
- backend/**
# REACT FRONTEND
- type: web
name: solemate-frontend
runtime: node
rootDir: frontend
buildCommand: bun install && bun run build
startCommand: bun run start
plan: free
envVars:
- key: NODE_VERSION
value: "20"
- key: BUN_VERSION
value: "1.1.0"
- key: VITE_BACKEND_URL
sync: false
buildFilter:
paths:
- frontend/**