diff --git a/.gitignore b/.gitignore
index fb280fe..24f43ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,4 +17,5 @@ results
node_modules
html/assets/js/email*
/config.json
+config.js
diff --git a/README.md b/README.md
index 763b3e5..5ff5d86 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,7 @@
# SquatConf website.
+```cp config-sample.js config.js```
+
+edit congif with the mailgun api key
+
```npm i && npm start```
\ No newline at end of file
diff --git a/config.js b/config-sample.js
similarity index 60%
rename from config.js
rename to config-sample.js
index 12b69c4..f78ed8f 100644
--- a/config.js
+++ b/config-sample.js
@@ -6,11 +6,12 @@ module.exports = require('rc')(name, {
db_opts: { valueEncoding: 'json' }
, db_path: join(cwd, 'db', name)
, port: 8000
- , host: "http://test.squatconf.eu"
+ , host: 'http://test.squatconf.eu'
+ , mailjetKey: 'key-...'
, email: {
- from : "no-reply@squatconf.eu"
- , subject : "Hello, everyone is welcome at SquatConf.."
- , bodyText : "Please verify that you wish to signup by following this link\n%link%\nYou can ignore this message if you DID NOT request to signup at our website\nhttp://squatconf.eu\n\nThe next event is in Paris, we hope to see you there !!\n\nKind regards from the team,\nSquatConf Paris 2014"
+ from : 'no-reply@squatconf.eu'
+ , subject : 'Hello, everyone is welcome at SquatConf..'
+ , bodyText : 'Please verify that you wish to signup by following this link\n%link%\nYou can ignore this message if you DID NOT request to signup at our website\nhttp://squatconf.eu\n\nThe next event is in Paris, we hope to see you there !!\n\nKind regards from the team,\nSquatConf Paris 2014'
}
})
diff --git a/html/index.html b/html/index.html
index 2245e99..d95a311 100644
--- a/html/index.html
+++ b/html/index.html
@@ -146,5 +146,15 @@
+