how to install cloud9 IDE on ubuntu server

前端 未结 2 1041
萌比男神i
萌比男神i 2021-02-01 23:28

I have a development server which runs mostly python-based apps. I like the interface of tools like cloud9, but since I have a server I\'d rather have something similar on my o

2条回答
  •  北荒
    北荒 (楼主)
    2021-02-02 00:27

    Getting Cloud9 IDE installed on your own server is not as hard as you may think.

    It is basically these steps:

    1. Install node.js

    2. Clone Cloud9's Git repository to your server and install

    3. Run a command in the terminal to start the Cloud9 app:

    bin/cloud9.sh -w ~/git/myproject -l 0.0.0.0

    You can then access your Cloud9 app at http://yourserveraddress:3131 (3131 being the default port it will serve on.

    As requested, you will not have learned much about node.js in the process ;)

提交回复
热议问题