Added Kadira packages and env settings in Docker Compose

This commit is contained in:
Gavin Lilly 2019-02-09 23:22:22 +00:00
parent 329c8d64a8
commit 7b5f02b4c8
3 changed files with 61 additions and 18 deletions

5
server/kadira.js Normal file
View file

@ -0,0 +1,5 @@
Meteor.startup(() => {
const appId = process.env.KADIRA_APP_ID;
const appSecret = process.env.KADIRA_APP_SECRET;
Kadira.connect(appId, appSecret);
});