We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a833e commit efc4b47Copy full SHA for efc4b47
render.yaml
@@ -1,12 +1,13 @@
1
services:
2
+ # === Backend (FastAPI + Docker) ===
3
- type: web
4
name: fat-eibl-backend
5
env: docker
6
plan: free
7
repo: https://github.com/uttamadhikari30-sys/FAT-EIBL-V3
8
branch: main
9
dockerfilePath: backend/Dockerfile
- buildContext: backend
10
+ buildContext: backend
11
envVars:
12
- key: DATABASE_URL
13
value: postgresql://fatuser:fatpass@db:5432/fatdb
@@ -22,7 +23,10 @@ services:
22
23
name: fat-eibl-frontend
24
env: node
25
- buildCommand: cd frontend && npm install && npm run build
26
+ buildCommand: |
27
+ cd frontend
28
+ npm install --legacy-peer-deps
29
+ npm run build
30
startCommand: npx serve -s frontend/dist
31
32
- key: VITE_API_URL
0 commit comments