-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.yaml
37 lines (32 loc) · 848 Bytes
/
env.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
##################################################
# env.yaml
# using yenv: https://github.com/jeffijoe/yenv
#
# Contains our environment variables.
# When the environment actually specifies
# any of the values here, the actual environment
# variables win. See the yenv docs.
##################################################
# Development environment.
development:
PORT: 1338
# Go nuts with your own environment variables.
DB_HOST: 'localhost'
# We're in dev mode.
DEV_MODE: true
# Not in production
PROD: false
# Running tests
test:
# Test environment is based on development.
~compose: development
TESTING: true
# Production environment.
production:
# Production environment is based on development.
~compose: development
PORT: 80
# We're not in dev mode
DEV_MODE: false
# We're in production!
PROD: true