-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathrender.yaml
More file actions
20 lines (20 loc) · 759 Bytes
/
render.yaml
File metadata and controls
20 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
- type: web
name: my-app-name # the name of this service, you should change this
runtime: ruby # this app is written in ruby
plan: free # make sure to set this to free or you'll get billed $$$
buildCommand: "./bin/render-build.sh" # we already created these two files for you
startCommand: "./bin/render-start.sh"
envVars: # this section sets some ENV variables needed by Render for deployment
- key: SECRET_KEY_BASE
generateValue: true
- key: DATABASE_URL
fromDatabase:
name: db
property: connectionString
- key: WEB_CONCURRENCY
value: 2
databases: # this section provides some additional database configuration
- name: db
plan: free
ipAllowList: []