diff --git a/.gitignore b/.gitignore index da6ed88..2a437ad 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules settings-demo.json settings-staging.json settings-production.json +settings-development.json diff --git a/settings-development-sample.json b/settings-development-sample.json new file mode 100644 index 0000000..afe4cc7 --- /dev/null +++ b/settings-development-sample.json @@ -0,0 +1,23 @@ +{ + "public": {}, + "private": { + "MAIL_URL": "", + "OAuth": { + "facebook": { + "appId": "", + "secret": "", + "loginStyle": "popup" + }, + "google": { + "clientId": "", + "secret": "", + "loginStyle": "popup" + }, + "github": { + "clientId": "", + "secret": "", + "loginStyle": "popup" + } + } + } +}