2021-03-11 00:34:24 +01:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
// invert booleans in the following three lines for testing, development and modifications of the app
|
|
|
|
production: true,
|
|
|
|
debug: false,
|
|
|
|
refreshServiceWorkerScriptAtEachRequest: false,
|
|
|
|
|
2021-03-12 07:50:04 +01:00
|
|
|
port: "__PORT__",
|
2021-03-11 00:34:24 +01:00
|
|
|
|
|
|
|
authentication: {
|
2021-03-12 07:50:04 +01:00
|
|
|
couchUrl: "__COUCH_URL__",
|
2021-03-11 00:34:24 +01:00
|
|
|
},
|
|
|
|
couchAdminAuthentication: {
|
|
|
|
// couch admin user:
|
2021-03-12 07:50:04 +01:00
|
|
|
username: "__COUCH_ADMIN_NAME__",
|
2021-03-11 00:34:24 +01:00
|
|
|
// couch admin user's password:
|
2021-03-12 07:50:04 +01:00
|
|
|
password: "__COUCH_ADMIN_PASSWORD__",
|
2021-03-11 00:34:24 +01:00
|
|
|
// the url where your couchdb server is accessible from the internet:
|
2021-03-12 07:50:04 +01:00
|
|
|
customCouchUrl: "__COUCH_URL__",
|
2021-03-11 00:34:24 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
};
|