34 lines
710 B
Bash
34 lines
710 B
Bash
APP_NAME=Flitter
|
|
APP_URL=http://localhost:8000/
|
|
|
|
SERVER_PORT=8000
|
|
|
|
# 1 - Error/Success
|
|
# 2 - Warning
|
|
# 3 - Message
|
|
# 4 - Info
|
|
# 5 - Debug
|
|
LOGGING_LEVEL=2
|
|
|
|
DATABASE_HOST=127.0.0.1
|
|
DATABASE_PORT=27017
|
|
DATABASE_NAME=flitter
|
|
|
|
# if true, specify DATABASE_USERNAME and DATABASE_PASSWORD
|
|
DATABASE_AUTH=false
|
|
|
|
# used to hash passwords and session keys
|
|
# should be randomly generated - require('uuid/v4')()
|
|
SECRET=changeme
|
|
|
|
# production | development
|
|
# if development, errors are displayed in detail
|
|
ENVIRONMENT=production
|
|
|
|
# if true, the Express.js server will use the SSL
|
|
# certificate and key in the file to answer HTTPS
|
|
# requests on the specified port
|
|
SSL_ENABLE=false
|
|
SSL_CERT_FILE=cert.pem
|
|
SSL_KEY_FILE=cert.key
|