Multiplatform Cloud IDE with Linux virtual environment - Sonicandr/fullstack-course1-module1 GitHub Wiki

Cloud9 - powerful online code editor with a full Ubuntu workspace in the cloud

Cloud9 is a good alternative to create a development environment on your computer - you can use a virtual Linux environment with the advanced code editor and a Linux command line directly from your browser!

  1. Follow to the Cloud9 home page and create a new account. You can use GitHub account for registration.

  2. Create a new workspace. (You can use presets for Rails or Ruby On Rails Tutorial)

  3. After workspace creation process, you can see Web IDE with bash command line. If you choose Rails preset - you will be ready to start with test Rails project inside folder with the name that you specified when creating the workspace. read this manual !

  4. You can create a new folder(in the root of workspace folder) for new projects from the context menu of the editor or using the command line.

  5. You have already installed the RVM manager, Ruby 2.2.1 and Git(if you choose one of presets) - you can use this Ruby version or update to the last version $ rvm install 2.2.4 or $ rvm install 2.3.0 and after installation process type
    $ rvm --default use 2.2.4 or $ rvm --default use 2.3.0 (It depends on which version you choose)

  6. You can install(update) Rails manually $ gem install rails -v 4.2.3

  7. If you don't read manual from step 3! :) use $ rails s -b $IP -p $PORT for running Rails app!

  8. That's all folks! :) Happy coding experience!