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
1 answer

Issue while deploying nodejs app to Openshift using Cloud9IDE

I am trying to deploy a node.js app to Openshift using cloud9IDE and i am getting this following error and the application is not deployed [1/4] Verifying preconditions... [2/4] Updating repository... [3/4] Pushing to OpenShift... error: src refspec…
anix
  • 347
  • 4
  • 14
0
votes
0 answers

Static HTML not rendered Cloud 9 node express/socket project

I am trying a node express/socket.io project in Cloud 9. I have the following project structure ├── server.js …
sij
  • 1,307
  • 7
  • 18
  • 35
0
votes
2 answers

How to configure the port of the server (process.env.PORT) in cloud9?

I use cloud9 locally and i would like to be able to configure the port when running my node server (because i am using socket.io on the client side and it's not convenient to have to update the path after each starts). I have seen that we can start…
Ludo
  • 5,060
  • 15
  • 53
  • 85
0
votes
1 answer

HG ignore on Cloud9 IDE

Where and how can I create/edit the .hgignore file within a Cloud9 IDE project? The project was started by cloning a Mercurial repo. I don't see any mercurial specific files or directories.
ahhu
  • 5
  • 2
0
votes
2 answers

ExpressJS looks in static directory for views, ignores view directory

According to the ExpressJS application settings documentation, you should be able to set views as the directory for the view engine. I am experiencing what I think may be a bug; instead of looking in the views directory, express looks in the static…
Kyeotic
  • 19,697
  • 10
  • 71
  • 128
0
votes
1 answer

How do I speed up load times for Sencha Touch

I am currently developing a Sencha Touch application using Cloud 9 IDE. I created the app on my local machine and later imported the project to Cloud 9. Everything works fine but an annoyance that happens is the load times for my page are greater…
technoSpino
  • 510
  • 4
  • 12
0
votes
1 answer

cloud9,rails s, Permission denied - bind(2) (Errno::EACCES)

when i do the opration with the doc of cloud9 https://docs.c9.io/running_a_rails_app.html finally, i write the code rails s -p 3000 -b 0.0.0.0 then the mistake show: /opt/rh/ruby193/root/usr/share/ruby/webrick/utils.rb:85:in `initialize': Permission…
railsbug
  • 13
  • 1
  • 4
0
votes
1 answer

Meteor and Cloud9: Node symlinkSync not working?

im trying to use c9.io to develop a Meteor app. I want to setup a symlinkSync using: var require = __meteor_bootstrap__.require; var fs = require('fs'); fs.symlinkSync('../../../../_storage', '.meteor/local/build/static/s'); im getting: Error:…
Vindberg
  • 1,502
  • 2
  • 15
  • 27
0
votes
1 answer

How to set PATH environment variables in Cloude 9 (c9) IDE and/or run npm modules requiring Java

For various reasons (and because of a recent back injury), I needed to get an "ultra-light" laptop. I went with the recently best-selling Samsung Chromebook, and I can actually get quite a lot of real work done. I ported one of my projects (very…
Christopher
  • 1,723
  • 1
  • 18
  • 31
0
votes
2 answers

Symfony framework on Cloud9

Is there a way to setup a Symfony project on Cloud9? I found some articles on creating Yii projects this way, but nothing on Symfony.
jOpacic
  • 9,453
  • 12
  • 36
  • 58
0
votes
1 answer

How do I get docpad server running / generating in Cloud 9 IDE?

When I do the "docpad run" command in the Cloud 9 Terminal it gives me a IP address like: http://127.9.102.129:8080/ but nothing is there. What do I do?
Mikeumus
  • 3,570
  • 9
  • 40
  • 65
0
votes
2 answers

Why does Cloud9 IDE return the error "Script does not exist" when trying to run simple Node.js script?

I am attempting to create a simple Hello World Node.js script using Cloud9 IDE. My code is below and is the atypical 6 lines: var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); …
ahsteele
  • 26,243
  • 28
  • 134
  • 248
0
votes
1 answer

Trying to create a custom module in node.js and referencing from another file

Here is my setup: hosted Cloud9 IDE Heroku Hosting Environment Desire to learn node.js I am working through the tutorial found at http://www.nodebeginner.org Manuel shows how to create a custom module called server.js: var http =…
Erds
  • 513
  • 5
  • 16
0
votes
1 answer

Cloud9 real-time collaboration tools in local server?

Cloning the git repo using the instruction here: https://github.com/ajaxorg/cloud9#readme I don't see any of the real-time tools currently implemented on c9.io hosted site. Does anyone know where the new tools are?
mikepcw
  • 153
  • 1
  • 8
0
votes
1 answer

Cloud9 ide for Django web development

I'm developing a web application using Django with a small team. We each have a Django server running on local machines, instead of using traditional repositories to maintain our code I was wondering if Cloud9 would be a better approach. I would…
Mike6856
  • 1
  • 3