initially written in a dockerfile, inventaire is actually running from local inventaire folder compiled mannually at hand and lunch inside docker compose letting the possibility of editing branching inventaire folder and mount it on docker when ready to test for production environement
12 lines
238 B
CoffeeScript
12 lines
238 B
CoffeeScript
module.exports =
|
|
env: 'production'
|
|
host: '0.0.0.0'
|
|
db:
|
|
protocol: 'http'
|
|
# host defined in docker-compose couchdb image name
|
|
host: 'couch'
|
|
port: '5984'
|
|
username: 'couchdb'
|
|
password: 'password'
|
|
debug: true
|