Skip to content

Commit 0bdc010

Browse files
committed
Add Render deployment configuration
1 parent 7e47834 commit 0bdc010

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

render.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
services:
2+
- type: web
3+
name: genai-browser-tool
4+
env: node
5+
plan: free
6+
buildCommand: npm run build:web
7+
startCommand: npm run serve
8+
envVars:
9+
- key: NODE_ENV
10+
value: production
11+
- key: PORT
12+
value: 3000
13+
healthCheckPath: /health
14+
autoDeploy: true
15+
buildFilter:
16+
paths:
17+
- web/**
18+
- package.json
19+
- package-lock.json
20+
ignoredPaths:
21+
- src/**
22+
- tests/**
23+
- README.md

0 commit comments

Comments
 (0)