0

Sometimes, we only need to change a little line, so vmc push is too slow.

Is there any NodeSJ module or service that can direct edit the code online?

Does Cloudfoundry has a dashboard?

By the way, how do you download app and log as a zip?

Ibu
  • 42,752
  • 13
  • 76
  • 103
atian25
  • 4,166
  • 8
  • 37
  • 60

1 Answers1

2
  1. If you look at how vmc push works, you will know from point 11 that the application is packaged by vmc by looking at all the differences and then pushed to the server. So cloudfoundry itself does not have a code editor.

  2. To edit your code online you can use another service like http://c9.io and follow these docs to see how to push to cloudfoundry

  3. CloudFoundry does not have a dashboard. (as of this writing)

    But there is another service based on micro cloudfoundry, called as appfog - and it has all the UI stuff + support for other platforms.

  4. Downloading app logs can be done with the help of this answer

Community
  • 1
  • 1
Nishant
  • 2,975
  • 23
  • 38
  • 4.had try before, but after upgdate vmc to 0.4.7, this script run but the log file is 0 byte. and how to download app? Is there any gem? I know less about ruby – atian25 Jan 07 '13 at 15:49
  • @atian25 Here is something that's recently come up. You might want to give it a spin https://github.com/rajaraodv/cfnodelogger (logs viewer) – Nishant Jan 10 '13 at 17:36