From e7465d0f33371a5d93d83b64eb466e666718dbe4 Mon Sep 17 00:00:00 2001 From: Chad Fawcett Date: Fri, 23 Jan 2015 23:47:23 -0800 Subject: [PATCH] Example config files should be updated to work with nconf --- config.example.js | 3 --- config.example.json | 3 +++ emails.example.js | 6 ------ emails.example.json | 6 ++++++ 4 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 config.example.js create mode 100644 config.example.json delete mode 100644 emails.example.js create mode 100644 emails.example.json diff --git a/config.example.js b/config.example.js deleted file mode 100644 index 2b432ed..0000000 --- a/config.example.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - 'MANDRILL_API_KEY': 'Key' -} diff --git a/config.example.json b/config.example.json new file mode 100644 index 0000000..55254a8 --- /dev/null +++ b/config.example.json @@ -0,0 +1,3 @@ +{ + "MANDRILL_API_KEY": "OkRyrXiDRO1a66ccTbTX5Q" +} diff --git a/emails.example.js b/emails.example.js deleted file mode 100644 index c504c3c..0000000 --- a/emails.example.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - 'secred_key': { - 'email': 'name@youdomain.com', - 'name': 'Full Name' - } -} diff --git a/emails.example.json b/emails.example.json new file mode 100644 index 0000000..e9fdaf6 --- /dev/null +++ b/emails.example.json @@ -0,0 +1,6 @@ +{ + "asdf": { + "email": "me@chadf.ca", + "name": "Chad Fawcett" + } +}