From cd7dc9125fff1af5c023d19ac13d368a8fd4c6e5 Mon Sep 17 00:00:00 2001 From: Tom Parker-Shemilt Date: Sat, 28 Dec 2019 11:37:51 +0000 Subject: Add docker/travis support --- config/database-docker.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 config/database-docker.js (limited to 'config') diff --git a/config/database-docker.js b/config/database-docker.js new file mode 100644 index 0000000..78a29a8 --- /dev/null +++ b/config/database-docker.js @@ -0,0 +1,3 @@ +module.exports = { + 'url' : 'mongodb://mongo:27017/gathio' // For local MongoDB connection +}; -- cgit v1.2.3 From 4c72d7706b1294e96cbac1e80dcff7f11be74406 Mon Sep 17 00:00:00 2001 From: Tom Parker-Shemilt Date: Sat, 28 Dec 2019 23:11:04 +0000 Subject: Fix comment in Dockerised config --- config/database-docker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/database-docker.js b/config/database-docker.js index 78a29a8..7847097 100644 --- a/config/database-docker.js +++ b/config/database-docker.js @@ -1,3 +1,3 @@ module.exports = { - 'url' : 'mongodb://mongo:27017/gathio' // For local MongoDB connection + 'url' : 'mongodb://mongo:27017/gathio' // For dockerised MongoDB connection }; -- cgit v1.2.3 From f2765abbee6001759f74f6c9e1161d2f02a58b2f Mon Sep 17 00:00:00 2001 From: lowercasename Date: Fri, 10 Jan 2020 21:53:13 +1100 Subject: Fixed a bug in iCal file import --- config/domain-example.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config') 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': '' }; -- cgit v1.2.3 From 5dcb3707c095af414f7e5e5b5bfb472f360a4216 Mon Sep 17 00:00:00 2001 From: lowercasename Date: Fri, 10 Jan 2020 21:56:29 +1100 Subject: Revert "Fixed a bug in iCal file import" This reverts commit f2765abbee6001759f74f6c9e1161d2f02a58b2f. --- config/domain-example.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'config') diff --git a/config/domain-example.js b/config/domain-example.js index b84e210..3b77197 100644 --- a/config/domain-example.js +++ b/config/domain-example.js @@ -3,7 +3,5 @@ module.exports = { 'domain' : 'localhost:3000' , 'port': '3000', 'email': 'contact@example.com', - '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': '' + 'sitename': 'gathio' }; -- cgit v1.2.3 From 7877e73537a0ce0650cc6bb073c9a81432bd35e1 Mon Sep 17 00:00:00 2001 From: lowercasename Date: Fri, 10 Jan 2020 22:03:45 +1100 Subject: Fixed a bug in iCal file import; added logo to emails --- config/domain-example.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config') 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': '' }; -- cgit v1.2.3