16 lines
604 B
Bash
16 lines
604 B
Bash
# Choices for NODE_ENV:
|
|
# development: for extra debug logging including all requests displayed in console
|
|
# production: reduced logging, only errors in console, all requests logged to file
|
|
NODE_ENV=development
|
|
|
|
# API key clients should use when talking to this server
|
|
# TODO: Add capability for multiple API keys for different clients
|
|
API_KEY=
|
|
|
|
# Host (ip address) the server should listen on.
|
|
# Change to 0.0.0.0 to allow access from network. Ideally use a local front-end server
|
|
# (for example nginx or apache) for https handling.
|
|
HOST=127.0.0.1
|
|
|
|
# Port the server should listen on
|
|
PORT=3000 |