-
Notifications
You must be signed in to change notification settings - Fork 3
/
env.yaml
36 lines (32 loc) · 872 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
##################################################
# 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.
##################################################
# Base config that is mixed in by the others.
base:
LOG_LEVEL: debug
EMIT_STACK_TRACE: false
# Development environment.
development:
~compose: base
# Port to use
PORT: 5000
# In development it can be useful to get the error stack.
EMIT_STACK_TRACE: true
# Running tests
test:
# Test environment is based on development.
~compose: development
# Disable logging for tests
LOG_LEVEL: off
# Production environment.
production:
# Production environment is based on development.
~compose: base
# Port to use
PORT: 80