# WebIDE **Repository Path**: renk123/WebIDE ## Basic Information - **Project Name**: WebIDE - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-21 - **Last Updated**: 2025-10-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Coding WebIDE [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/Coding/WebIDE/blob/master/LICENSE) [![Build Status](https://travis-ci.org/Coding/WebIDE.svg?branch=master)](https://travis-ci.org/Coding/WebIDE) [![Docker Stars](https://img.shields.io/docker/stars/webide/webide.svg)](https://hub.docker.com/r/webide/webide 'DockerHub') [![Docker Pulls](https://img.shields.io/docker/pulls/webide/webide.svg)](https://hub.docker.com/r/webide/webide 'DockerHub') README: [English](https://github.com/Coding/WebIDE/blob/master/README.md) | [中文](https://github.com/Coding/WebIDE/blob/master/README-zh.md) ---- ### WebIDE is now upgraded to Cloud Studio,welcome to our new homepage https://studio.coding.net/ ---- ![](https://raw.githubusercontent.com/Coding/WebIDE/gh-pages/screenshots/import.png) ![](https://raw.githubusercontent.com/Coding/WebIDE/gh-pages/screenshots/workspace.png) Coding WebIDE(https://ide.coding.net) is a cloud-based IDE developed by Coding Team.You can create your own workspace and develop projects here.WebIDE works fine with Git. You can use Coding、GitHub、BitBucket、GitLab as your Git repository. Workspaces are powered by Docker Ubuntu containers.The development environment can be saved and shared to your team member. [Live Demo](https://ide.coding.net/ws/?ownerName=duwan&projectName=WordPress&isTry=true) Please submit issues to corresponding projects, that'll help us make issues tracking easier so that we can provide timely help to you. Submit frontend issues at [WebIDE-Frontend](https://github.com/Coding/WebIDE-Frontend/issues) and backend issues at [WebIDE-Backend](https://github.com/Coding/WebIDE-Backend/issues). ## Features 1. *Built-In Terminal* 2. *Syntax Highlighting* 3. *Language Tools* 4. *Themes* 5. *Split View* 6. *VIM/Emacs Mode* 7. *Previews* This is the entry point to setup and run the WebIDE Community Edition project. It includes other 3 repos as git submodules. ## Modules * [WebIDE-Frontend](https://github.com/Coding/WebIDE-Frontend) contains frontend code. * [WebIDE-Frontend-Webjars](https://github.com/Coding/WebIDE-Frontend-Webjars) packs frontend to webjar. * [WebIDE-Backend](https://github.com/Coding/WebIDE-Backend) contains backend code. ## Environment WebIDE Frontend require **node v6.x** as build environment (this will save you from alot of weird errors). We recommend **yarn** for package management, **webpack** and **babel** is used for building. Frontend Webjars & WebIDE Backend use **maven3** and **java8**. The project requires at minimum 512MB memory to run. Please ensure you have corresponding tools installed in your environment before build and run the project. ## Native Server Clone from coding.net: ``` git clone git@git.coding.net:coding/WebIDE.git ``` Clone from github.com: ``` git clone git@github.com:Coding/WebIDE.git ``` Init and pull submodules: ``` git submodule init git submodule update ``` This will also clone the other 3 repos via git submodule mechanism. We provide a shell script `ide.sh` to ease the process for you. ``` ./ide.sh build # transpile and pack the frontend to webjars ./ide.sh run # start the backend server ``` Server runs on port 8080 by default, visit localhost:8080 to check it out. ### Configurations `backend/src/main/resources/application.properties` contains configurations of user, project, database, etc., you can change these parameters to meet your need: * **SPACE_HOME:** path to your workspace directory, default to `~/.coding-ide/workspace` * **server.port:** backend server port * **USERNAME:** username, used by git as its `user.name` config when commit, defaults to "coding" * **EMAIL:** email, used by git as its `user.email` config when commit, defaults to "coding@coding.net" * **AVATAR:** user's avatar * **CODING_IDE_HOME:** path to store WebIDE application's data, default to `~/.coding-ide` If changed, restart the application to let your configurations take effect. Note that changes on `USERNAME`, `EMAIL` *WILL NOT* apply to workspaces that are already created. ## Docker Server ``` docker run -p 8080:8080 -v coding-ide-home:/root/.coding-ide webide/webide ``` To learn more about docker commands,please refer to wiki [English](https://github.com/Coding/WebIDE/wiki/Docker-Server.en) [中文](https://github.com/Coding/WebIDE/wiki/Docker-Server.zh)