Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a cloud IDE with Assembla/GitHub integration? [closed]

With the new Chromebook launch I have been wondering, is there a cloud IDE that could be used from Chrome and that has an Assembla and/or GitHub integration for hosting the projects?

I'm thinking about Rails development.

like image 200
alestanis Avatar asked Jul 15 '26 22:07

alestanis


2 Answers

Cloud9 (not exactly free, past one private workspace) has GitHub and BitBucket integration, and is all about collaboration.

And it does supports the ability to run a Rails app.

like image 193
VonC Avatar answered Jul 18 '26 02:07

VonC


Sure it is possible to integrate with assembla. There are a couple steps to do that:

  1. Have an assembla account(paid or free) and space with a git repository.Unfortunatelly Could9 does not support svn repositories. So on assembla side you;ll have something like: /git/nodes" rel="nofollow">https://www.assembla.com/code/<your-space>/git/nodes. If it is private repository your git url will be [email protected]:<your-space>.git or if it is a public repository you will have git://git.assembla.com/<your-space>.git
  2. Have a Cloud9 account
  3. Go to you could9 dashboard
  4. Look for "Show your SSH key" under "Account settings" pannel on the right
  5. Copy the ssh key and add it to your account on assembla at: https://www.assembla.com/user/edit/edit_git_settings
  6. Now create your Cloud9 workspace with "Clone from url" using assembla git url from step 2.
  7. You're done.
  8. Do the rest of the ordinary stuff you usually do, clone, commit, push, etc.
like image 32
BigAll Avatar answered Jul 18 '26 03:07

BigAll