grungnet/render.yaml

54 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2023-06-15 06:08:34 +00:00
services:
- type: web
2023-06-15 06:17:49 +00:00
name: Owlbear Rodeo Legacy
2023-06-15 06:08:34 +00:00
runtime: static
buildCommand: yarn build
staticPublishPath: ./build
pullRequestPreviewsEnabled: false
2023-06-16 04:01:47 +00:00
branch: main
2023-06-15 06:08:34 +00:00
buildFilter:
paths:
- src/**/*.js
- src/**/*.ts
ignoredPaths:
- src/**/*.test.js
routes:
- type: rewrite
source: /*
destination: /index.html
headers:
- path: /*
name: X-Frame-Options
value: sameorigin
- path: /*
name: X-Robots-Tag
value: noindex
2023-06-15 06:38:58 +00:00
envVars:
- key: REACT_APP_BROKER_URL
fromService:
type: web
name: "Owlbear Rodeo Backend"
envVarKey: RENDER_EXTERNAL_URL
- key: REACT_APP_MAINTENANCE
value: false
- key: REACT_APP_VERSION
value: "1.10.2"
2023-06-15 06:08:34 +00:00
# A Docker web service
- type: web
2023-06-15 06:17:13 +00:00
name: Owlbear Rodeo Backend
2023-06-15 06:38:58 +00:00
runtime: docker
2023-06-15 06:08:34 +00:00
region: oregon # optional (defaults to oregon) check other regions here: https://render.com/docs/regions
plan: free
2023-06-16 04:01:47 +00:00
branch: main
rootDir: ./backend
dockerfilePath: ./Dockerfile
2023-06-16 04:01:47 +00:00
numInstances: 1
2023-06-15 06:08:34 +00:00
healthCheckPath: /health
envVars:
- key: ORIGIN_WHITELIST
fromService:
type: web
name: "Owlbear Rodeo Legacy"
envVarKey: RENDER_EXTERNAL_HOSTNAME
2023-06-15 06:08:34 +00:00
- key: PORT
value: 9000