Init is a customizable set of templates for several technologies in JavaScript, including:
First we create our repository (or we use our existing ones)
git init
Next lets add a git remote with the init repo
git remote add init git://github.com/picanteverde/init.git
After that we pull the branches we need for example to have the latest version of the user manager
git pull init usermanager
now you can start your application with a working environment
If you want you can delete the init remote
git remote remove init
To start the init application (you need node and npm) just do a
npm install
node server
on the base folder
If you want to see your application working on Heroku pull the heroku-webprocess branch
git pull init heroku-webprocesss
now, with the heroku Toolbelt installed create the heroku app
heroku create
For the next step make sure you added your .ssh pub key to your heroku account
git push heroku master
you will be notified with the url of your app running on heroku cedar stack