26 lines
484 B
Bash
26 lines
484 B
Bash
APP_NAME=Flitter
|
|
|
|
SERVER_PORT=8000
|
|
|
|
# 1 - Error/Success
|
|
# 2 - Warning
|
|
# 3 - Message
|
|
# 4 - Info
|
|
# 5 - Debug
|
|
LOGGING_LEVEL=10
|
|
|
|
DATABASE_HOST=127.0.0.1
|
|
DATABASE_PORT=27017
|
|
DATABASE_NAME=pied_d1
|
|
|
|
# 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
|