Reputation: 2092
I would like to get this app: https://github.com/lysol/typeto.me/
running on Heroku (or some similar service).
What steps would I need to follow? I'm having a great deal of trouble understanding what to put where.
I already know I need to do something like this:
Can I run coffeescript in Heroku?
for the coffeescript stuff.
Upvotes: 2
Views: 264
Reputation: 2537
You can try this site http://wedeploy.com/ with suport Node, Ruby, MongoDB, and others services. Have simple client to manage your apps.
Upvotes: 0
Reputation: 6339
So this is super easy to run on dotCloud.com
Here is a demo I just pushed.
Just clone this fork and push it to dotcloud.
git clone git://github.com/3on/typeto.me.git
and cd typeto.me
typetome-[your dotcloud login].dotcloud.com
dotcloud create typetome
dotcloud push typetome
And that's it!
Upvotes: 7
Reputation: 2278
Heroku has a great article on deploying node.js apps at their devcenter. It is fairly simple, assuming you use NPM for packages, and git for version control.
Upvotes: 0