How To Get Started? - adeshpandey/meteor-boilerplate GitHub Wiki

To get started with meteor boilerplate does not need any special configurations, you can fork the repo and get started with(Note: meteor must be already installed on your machine)

How to create a new route?

Add new route rule in the lib/routes.js

Where to create new templates?

Meteor does not restrict to create files on a specific place but I have followed the modules structure to build this boilerplate so I would suggest you to create a new directory inside client/modules for each route and create the tmpl.html,helpers.js,events.js there which will only have codes for that particular route.

Where to put the common codes?

You can put the common codes in the client/common directory