-
Notifications
You must be signed in to change notification settings - Fork 2
/
render.yaml
38 lines (37 loc) · 1.02 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
services:
- type: web
name: socialbotnet
runtime: docker
dockerfilePath: ./.render/Dockerfile
repo: https://github.com/Knorrke/socialbotnet.git
region: frankfurt # (oregon,frankfurt,ohio,singapore)
plan: free # (free, starter, standard, pro, pro plus, pro max, pro ultra)
healthCheckPath: /
envVars:
- key: JDBC_DATABASE_USERNAME
fromDatabase:
name: socialbotnet_db
property: user
- key: JDBC_DATABASE_PASSWORD
fromDatabase:
name: socialbotnet_db
property: password
- key: DB_HOST
fromDatabase:
name: socialbotnet_db
property: host
- key: DB_PORT
fromDatabase:
name: socialbotnet_db
property: port
- key: DB_DATABASE
fromDatabase:
name: socialbotnet_db
property: database
autoDeploy: false
databases:
# db
- name: socialbotnet_db
region: frankfurt
plan: free
ipAllowList: [] # none - only internal access. (defaults to allow all)