-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.yaml
37 lines (34 loc) · 911 Bytes
/
render.yaml
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
version: "1"
services:
- type: web
plan: free
name: flamingo-backend
runtime: go
repo: https://github.com/yasuflatland-lf/flamingo-armond
rootDir: backend
buildCommand: |
go install github.com/pressly/goose/v3/cmd/goose@latest && \
go mod download && \
go build -o main .
startCommand: ./main
healthCheckPath: /health
envVars:
- fromGroup: flamingo-armond
- type: web
name: flamingo-frontend
runtime: static
repo: https://github.com/yasuflatland-lf/flamingo-armond
rootDir: frontend
buildCommand: npm install -g pnpm && pnpm install && pnpm run build
staticPublishPath: dist
envVars:
- fromGroup: flamingo-armond
buildFilter:
paths:
- src/**/*.tsx
ignoredPaths:
- src/**/*.test.*
headers:
- path: /*
name: X-Frame-Options
value: sameorigin