Daniel
Daniel

Reputation: 2092

How can I run this app on Heroku or similar?

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

Answers (3)

Darlan Dieterich
Darlan Dieterich

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

3on
3on

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.

  1. create an account on dotcloud.com
  2. install the cli tool
  3. clone the repo git clone git://github.com/3on/typeto.me.git and cd typeto.me
  4. edit the config file and put right value for "publicHost" typetome-[your dotcloud login].dotcloud.com
  5. create an app dotcloud create typetome
  6. push it to the cloud dotcloud push typetome

And that's it!

Upvotes: 7

Kyle Lacy
Kyle Lacy

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

Related Questions