Thinkmill / reacteu-app

ReactEurope TouchstoneJS Mobile App
http://thinkmill.com.au/react-europe
MIT License
161 stars 52 forks source link

Error: Cannot find module './secret' #16

Open wjessup opened 8 years ago

wjessup commented 8 years ago

In datastore.js line 5

var assign = require('./secret');

this doesn't come w/ the default package

wjessup commented 8 years ago

this works if you change default.secret.json to secret.js and export the object:

module.exports = { "main": { "id": 0, "token": "qwerty123" }, "hackathon": { "id": 1, "token": "qwerty234" }, "workshop": { "id": 2, "token": "qwerty345" } }