none
5 Opened issues.
- At the launch of the workspace, the IDE "GWT" is loaded instead of "Theia" IDE - eclipse-che/che#13681 - team/ide2
- Deleted
projects:in devfiles.yaml on creating workspaces - eclipse-che/che#13678 - team/ide2 - Can't update Che 7 in Minishift to use newer devfile registry - eclipse-che/che#13676 - team/ide2
4 Opened issues.
- At the launch of the workspace, the IDE "GWT" is loaded instead of "Theia" IDE - eclipse-che/che#13681
- Deleted
projects:in devfiles.yaml on creating workspaces - eclipse-che/che#13678 - Can't update Che 7 in Minishift to use newer devfile registry - eclipse-che/che#13676
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "defaultEnv": "default", | |
| "environments": { | |
| "default": { | |
| "machines": { | |
| "ws/dev": { | |
| "attributes": { | |
| "memoryLimitBytes": "536870912" | |
| }, | |
| "servers": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # inherit an image with node.js and npm - runtime requirements for TypeScript LS | |
| FROM eclipse/node | |
| # install socat | |
| RUN sudo apt-get install socat -y && \ | |
| sudo npm install -g typescript@2.5.3 typescript-language-server@0.1.4 | |
| # run socat that listens on port 4417 with exec command that starts LS | |
| CMD socat TCP4-LISTEN:4417,reuseaddr,fork EXEC:"typescript-language-server --stdio |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CHE_WORKSPACE_JAVA__OPTIONS # overrides the default value of JAVA_OPTS of all workspaces | |
| CHE_WORKSPACE_MAVEN__OPTIONS # overrides the default value of MAVEN_OPTS of all workspaces | |
| CHE_WORKSPACE_WSAGENT__JAVA__OPTIONS # overrides the default value of JAVA_OPTS of all ws-agents | |
| CHE_WORKSPACE_MAVEN__SERVER__JAVA__OPTIONS # overrides the default value of JAVA_OPTS of all maven servers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JAVA_OPTS # machine-wide java opts | |
| MAVEN_OPTS # machine-wide maven opts | |
| CHE_WORKSPACE_WSAGENT__JAVA__OPTIONS # java opts to adjust java opts of ws-agent | |
| CHE_WORKSPACE_MAVEN__SERVER__JAVA__OPTIONS # java opts to adjust java opts of the maven server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/minishift/minishift-addons | |
| minishift addons install <path_to_minishift-addons-clone>/add-ons/che | |
| minishift addons enable che | |
| minishift addons apply \ | |
| --addon-env CHE_DOCKER_IMAGE=eclipse/che-server:nightly \ | |
| --addon-env OPENSHIFT_TOKEN=$(oc whoami -t) \ | |
| che |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| db: | |
| image: eclipse/mysql | |
| environment: | |
| MYSQL_ROOT_PASSWORD: password | |
| MYSQL_DATABASE: petclinic | |
| MYSQL_USER: petclinic | |
| MYSQL_PASSWORD: password | |
| mem_limit: 1073741824 | |
| volumes_from: |