Say Hello Using Twilio & Meteor
Getting Started:
- Install Meteor
- Get Twilio Account info
- make settings.json look like this
{
"TWILIO": {
"FROM": "TWILIO NUMBER",
"SID": "SID",
"TOKEN": "AUTH TOKEN"
}
}
git clone https://github.com/jhgaylor/hello-twilio-meteor.git
cd hello-twilio-meteor
meteor
To Run with Twilio
meteor --settings=settings.json
To Run without Twilio
meteor
To Run with a different database
MONGO_URL=mongodb://remoteDBServer:27017/foo_db meteor