summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/api-example.js3
-rw-r--r--config/database-example.js3
2 files changed, 6 insertions, 0 deletions
diff --git a/config/api-example.js b/config/api-example.js
new file mode 100644
index 0000000..08bd845
--- /dev/null
+++ b/config/api-example.js
@@ -0,0 +1,3 @@
+module.exports = {
+ 'sendgrid' : 'SENDGRID API KEY GOES HERE'
+};
diff --git a/config/database-example.js b/config/database-example.js
new file mode 100644
index 0000000..4aa4c4d
--- /dev/null
+++ b/config/database-example.js
@@ -0,0 +1,3 @@
+module.exports = {
+ 'url' : 'mongodb://localhost:27017/gathio' // For local MongoDB connection
+};