-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
render.yaml
57 lines (50 loc) · 1.84 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
databases:
- name: maybe
user: maybe
plan: free
services:
- type: web
plan: free
autoDeploy: false
runtime: ruby
name: maybe
repo: https://github.com/maybe-finance/maybe.git
branch: main
healthCheckPath: /up
buildCommand: "./bin/render-build.sh"
preDeployCommand: "bundle exec rails db:migrate"
startCommand: "bundle exec rails server"
envVars:
- key: DATABASE_URL
fromDatabase:
name: maybe
property: connectionString
- key: SELF_HOSTED
value: true
- key: HOSTING_PLATFORM
value: render
# Since the app is self-hosted, we cannot use master.key to encrypt credentials. App depends entirely on ENV variables
# https://api.rubyonrails.org/v7.1.3.2/classes/Rails/Application.html#method-i-secret_key_base
#
# To generate this, run: `openssl rand -hex 64` or `rails secret`
- key: SECRET_KEY_BASE
sync: false
- key: WEB_CONCURRENCY
value: 2
- key: GOOD_JOB_EXECUTION_MODE
value: async # Typically, `external` is used in prod, but this avoids another cron service and is generally fine for a self-hoster given low traffic
# The app uses this info to know which repo to fetch latest commit data from for upgrades
# This should MATCH the `repo` and `branch` keys in the config above ALWAYS
- key: GITHUB_REPO_OWNER
value: maybe-finance
- key: GITHUB_REPO_NAME
value: maybe
- key: GITHUB_REPO_BRANCH
value: main
# Required to allow your self-hosted instance to be able to upgrade itself
- key: UPGRADES_ENABLED
value: true
# If you upgrade your instance to a paid plan, you can set this to false (or remove it)
# See note in `render-build.sh` script.
- key: RUN_DB_MIGRATIONS_IN_BUILD_STEP
value: true