Questions tagged [cloud9-ide]

Cloud9 is an open-source, online development environment that combines a live test server with built-in support of several languages.

Cloud9 is an online code editor with a full Ubuntu workspace in the cloud.

Currently, it supports:

  • Apache httpd (PHP, HTML)
  • Node
  • Python
  • Ruby
  • Ruby on Rails
  • Go
  • CoffeeScript
  • Julia
  • Mocha
  • Shell script

It is open source, enabling developers to freely customize their environment according to their preference. Projects on Cloud9 can be public (and open-source) or private for users who pay a monthly fee, and can be run on an Ubuntu server provided with each workspace.

Questions are encouraged regarding Cloud9's support for languages and frameworks, bug reports, feature requests, and development of plugins using the SDK, both using this tag on StackOverflow and on the Cloud9 Community.

GitHub repository for Cloud9 IDE

1119 questions
0
votes
2 answers

cloud9 installation on ubuntu 13.10

I have installed the cloud9 on my ubuntu server by following the instructions given in the following link. https://github.com/ajaxorg/cloud9/tree/master when i start the cloud9 on my server through mindterm ssh, i got the message that it was running…
Balayesu Chilakalapudi
  • 1,386
  • 3
  • 19
  • 43
0
votes
1 answer

How to install Gradle into a Cloud 9 ide?

Does anyone know how I can to install Gradle into a Cloud 9 workspace? These are my current instructions: linux> wget http://services.gradle.org/distributions/gradle-1.10-bin.zip linux> unzip -q gradle-1.10-bin.zip -d /usr/local/ #…
letter Q
  • 14,735
  • 33
  • 79
  • 118
0
votes
1 answer

pry on rspec in cloud 9 ide

I am new to RoR. I have two problems here. ISSUE 1 my rspec is require 'spec_helper' describe RefUserCategory do describe "validations" do it { should validate_presence_of(:user_category_description) } end end my Ref_User_Category…
Rigel
  • 882
  • 1
  • 11
  • 32
0
votes
1 answer

Custom Mode for Ace.js causes error "Uncaught TypeError: Cannot set property 'lastIndex' of undefined"

I'm creating a web application that will require users to be able to write code in my custom scripting language that is currently in development. I've used Cloud9's Ace editor in projects before. Since I'm used to Ace and know quite a bit about…
Noah Crowley
  • 455
  • 2
  • 7
  • 17
0
votes
0 answers

Cloud9 Sync with Local Repo

I'm new to git. I just setup my git server with SSH. I'm using Cloud9 as my IDE because it's easy to use on the go... I've created a git repo for my project. I'm not sure if it's important to note but I added existing files to create this repo. It…
Ken J
  • 4,312
  • 12
  • 50
  • 86
0
votes
4 answers

Migrating between different computers

First off! This question doesn't really feel like it belongs on Stackoverlow, but according to the "on-topics" help, "software tools commonly used by programmers" is in scope. So, here goes: Background: I work from home, for a very small company. …
David S
  • 12,967
  • 12
  • 55
  • 93
0
votes
1 answer

How do I try and run code that I have written in ACE Cloud 9?

I am using ACE to allow people to code freely on my website. How would I run this code. I would like a run button in the bottom left corner (I can do that in css), but how would I run it, as it is python. I have added extra tags, as you can write…
0
votes
1 answer

can't get socket.io to work on cloud9

I cannot connect to the socket.io using cloud9 for some reason. node app.js var express = require('express') , app = express() , server = require('http').createServer(app) , path = require('path') , io =…
chovy
  • 72,281
  • 52
  • 227
  • 295
0
votes
1 answer

breakpoints in cloud9IDE

I am using cloud9 for a nodejs project. If I place a breakpoint in server.js it triggers just fine, however if I place a breakpoint in any other module it never triggers. I have placed a console.log statement in my other module to confirm it is…
gloo
  • 2,490
  • 3
  • 22
  • 38
0
votes
1 answer

How to detect if an app is running with Cloud9?

I'm developping a node application, sometimes with Eclipse (locally) and sometimes with Cloud9 (remotely). As I'm using a database, I have one local with mongoDB and another remote on mongoHQ. If I dont want to use the DB on mongoHQ when I work…
GuillaumeA
  • 3,493
  • 4
  • 35
  • 69
0
votes
1 answer

Basic cloud9 project

I'm new to the cloud IDE setup and can't get my head around deployment and "workspaces". I tried making a basic site with html (to use javascript/css once I can figure out how to call the code into the html) as testing before running it on another…
Louis Maddox
  • 5,226
  • 5
  • 36
  • 66
0
votes
1 answer

Testing node express app with supertest on cloud9

I can't test express apps on cloud9 with supertest : even basic tests throws ECONNREFUSED. Steps to reproduce : create a new nodejs workspace npm install express supertest create a file "fails.js" containing the following code : // Code from…
jmbarbier
  • 814
  • 8
  • 21
0
votes
1 answer

Cloud 9 IDE and Ruby on Rails

Has anyone successfully created a Ruby on Rails (2.3.8) with Ruby (1.8.7) on the Cloud 9 IDE? I have tried several times, but the lack of documentation is a bit irritating, and every time I attempt to load the version of Ruby on Rails and Ruby that…
gamesfreke
  • 105
  • 1
  • 1
  • 9
0
votes
1 answer

Application Error : express and socket.io with node.js in heroku

my source is here.. it's simple code... var express = require('express'); var app = express() , http = require('http') , server = http.createServer(app) , io = require('socket.io').listen(server); http.createServer(function (req, res) { …
0
votes
1 answer

Django template location with Cloud9

I'm learning Django and have just moved everything to Cloud9. I don't understand how to point to my templates on Cloud9? On my local machine I have the template directory set to /home/user/etc/etc/templates and it works fine. I can't seem to grasp…