-
Notifications
You must be signed in to change notification settings - Fork 1
/
doppler-template.yaml
35 lines (35 loc) · 1.16 KB
/
doppler-template.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
projects:
- name: 'yodaspeak'
description: 'A simple application to translate English into Yoda Speak.'
environments:
- slug: 'dev'
name: 'Development'
configs:
- slug: 'dev'
- slug: 'prd'
name: 'Production'
configs:
- slug: 'prd'
secrets:
dev:
NODE_ENV: 'development'
DEBUG: 'yodaspeak:*'
LOGGING: 'dev'
HOST: 'localhost'
PORT: '8080'
TRANSLATION_SUGGESTION: 'Secrets must not be stored in git repositories'
YODA_TRANSLATE_API_ENDPOINT: 'https://api.funtranslations.com/translate/yoda.json'
TRANSLATE_ENDPOINT: '/translate'
YODA_TRANSLATE_API_KEY: ''
RATE_LIMITING_ENABLED: 'false'
prd:
NODE_ENV: 'production'
DEBUG: 'app: server: error:'
LOGGING: 'yodaspeak:*'
HOST: '0.0.0.0'
PORT: '8080'
TRANSLATION_SUGGESTION: 'Secrets must not be stored in git repositories'
YODA_TRANSLATE_API_ENDPOINT: 'https://api.funtranslations.com/translate/yoda.json'
TRANSLATE_ENDPOINT: '/translate'
YODA_TRANSLATE_API_KEY: ''
RATE_LIMITING_ENABLED: 'true'