Skip to content

Instantly share code, notes, and snippets.

@ashleygwilliams
Created July 6, 2015 17:27
Show Gist options
  • Save ashleygwilliams/79a3ebbf133c751f7826 to your computer and use it in GitHub Desktop.
Save ashleygwilliams/79a3ebbf133c751f7826 to your computer and use it in GitHub Desktop.
1 export API_HOST=0.0.0.0
2 export PORT=2015
3 export POSTGRE_CONNECTION_STRING=postgresql://localhost:5432/webma ker
4 export REDIS_URL=redis://localhost:6379
5 export API_VERSION=dev
6 export ID_SERVER_CONNECTION_STRING=https://id.mofostaging.net
7
8 ## log level - given a chosen level, log events only at or above t hat level
9 ## debug < info < warn < error < exception < stat
10 export LOG_LEVEL=debug
11
12 ## URI ca be set to make the docs page show the externally facing URI instead
13 ## of using the API_HOST and PORT values
14 export URI=https://api.webmaker.org
15
16 ## NewRelic Configuration
17 ## See https://docs.newrelic.com/docs/agents/nodejs-agent/installa tion-configuration/nodejs-agent-configuration
18 export NEW_RELIC_ENABLED=false
19 export NEW_RELIC_NO_CONFIG_FILE=true
20 export NEW_RELIC_HOME='./node_modules/newrelic'
21 export NEW_RELIC_LICENSE_KEY=newrelic license key
22 export NEW_RELIC_APP_NAME=api.webmaker.org
23 export NEW_RELIC_LOG_LEVEL=info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment