-
Notifications
You must be signed in to change notification settings - Fork 12
/
_env
32 lines (24 loc) · 847 Bytes
/
_env
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
# This file documents possible server configuration without
# the risk of checking sensitive variables into the repository.
# Rename it to `.env` and then feel free to add sensitive values as `.env` is
# in the `.gitignore`.
# The environment
NODE_ENV=development
# Show debugger output in terminal
# https://github.com/visionmedia/debug
DEBUG=app
# Server listening port
PORT=6060
# Any valid ms value
# https://github.com/rauchg/ms.js
BROWSER_CACHE=0
# Serve client side assets using webpack-dev-middleware instead of /dist.
WEBPACK_DEV_SERVER=true
# Determines whether in browser or node env.
# NOTE: This is explicitly set in the client.
BROWSER=false
# The api endpoint. Must be absolute to ensure url can be resolved when run on
# the server.
API_ENDPOINT=http://localhost:6060/api
# Apply redux-logger middleware.
REDUX_LOGGER=true