A Webinar Polling app made for Google Developer Group mait.
This app requires you to have meteor and node installed. Then you can clone the repo and run the following from the command line.
meteor npm install
meteor
Open a new terminal and run the following command.
meteor mongo
Now add the documents in the webinar collection using the following command. This happens as and when we need to add/change topics to be displayed to the user.
db.webinars.insert({title:"Any title",upvotes:0});
Any kind of contributions are welcome.
- Fork the repo on GitHub.
- Clone the project to your own machine.
- Commit changes to development branch.
- Push your work back up to your fork.
- Submit a Pull request so that i can review your changes