diff options
author | Darius Kazemi <darius.kazemi@gmail.com> | 2020-01-12 18:15:11 -0800 |
---|---|---|
committer | Darius Kazemi <darius.kazemi@gmail.com> | 2020-01-12 18:15:11 -0800 |
commit | 312520c1e82874ba12004bb2b6c5dead4b270745 (patch) | |
tree | 1c45ac7a43aad7bfc57b4362e7c2b4b9dd446be5 /config | |
parent | fa2ca34a5c8f0e10a902129caec36dea38eec13a (diff) | |
parent | 547054b9c1dfd9c49594609fdda78fac3c11938a (diff) |
Merge branch 'master' of github.com:lowercasename/gathio into newmaster
Diffstat (limited to 'config')
-rw-r--r-- | config/database-docker.js | 3 | ||||
-rw-r--r-- | config/domain-example.js | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/config/database-docker.js b/config/database-docker.js new file mode 100644 index 0000000..7847097 --- /dev/null +++ b/config/database-docker.js @@ -0,0 +1,3 @@ +module.exports = { + 'url' : 'mongodb://mongo:27017/gathio' // For dockerised MongoDB connection +}; diff --git a/config/domain-example.js b/config/domain-example.js index 3b77197..b84e210 100644 --- a/config/domain-example.js +++ b/config/domain-example.js @@ -3,5 +3,7 @@ module.exports = { 'domain' : 'localhost:3000' , 'port': '3000', 'email': 'contact@example.com', - 'sitename': 'gathio' + 'sitename': 'gathio', + // If left blank, this defaults to https://yourdomain.com/images/gathio-email-logo.gif. Set a full URL here to change it to your own logo (or just change the file itself) + 'logo_url': '' }; |