Deploying a Sails.js app to Heroku?

deployment, heroku, node.js, sails.js, web-deployment

Solution

You should check out this github repo : heroku-sails It should get you started with sailsjs on heroku

There is a discussion around this particular github repo here on the sails.js google group

These are also resources that can help you get your app running :

- Sails Deployment Guide

- An answer of sails.js author to the same question

Problem

I have limited experience deploying Node.js apps -- how can I deploy a Sails.js app to Heroku? I've `heroku login`ed and `heroku create`d my app already.

Original source