-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.yaml
50 lines (50 loc) · 1.63 KB
/
spec.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
name: lairbnb
# See https://www.digitalocean.com/docs/app-platform/#regional-availability for the available options
# You can get region slugs from https://www.digitalocean.com/docs/platform/availability-matrix/
# `fra` stands for Frankfurt (Germany - EU)
region: fra
services:
- name: lairbnb
# Relative to the repository root
dockerfile_path: Dockerfile
source_dir: .
github:
branch: main
deploy_on_push: true
repo: NoodleSamaChan/lairbnb_rs
# Active probe used by DigitalOcean's to ensure our application is healthy
health_check:
# The path to our health check endpoint! It turned out to be useful in the end!
http_path: /health_check
# The port the application will be listening on for incoming requests
# It should match what we specify in our configuration.yaml file!
http_port: 8000
# For production workloads we'd go for at least two!
instance_count: 1
# Let's keep the bill lean for now...
instance_size_slug: basic-xxs
# All incoming requests should be routed to our app
routes:
- path: /
envs:
- key: APP_DATABASE__USERNAME
scope: RUN_TIME
value: ${lairs.USERNAME}
- key: APP_DATABASE__PASSWORD
scope: RUN_TIME
value: ${lairs.PASSWORD}
- key: APP_DATABASE__HOST
scope: RUN_TIME
value: ${lairs.HOSTNAME}
- key: APP_DATABASE__PORT
scope: RUN_TIME
value: ${lairs.PORT}
- key: APP_DATABASE__DATABASE_NAME
scope: RUN_TIME
value: ${lairs.DATABASE}
databases:
- engine: PG
name: lairs
num_nodes: 1
size: db-s-dev-database
version: "14"