Platform for providing Kubernetes-based Cloud Development Environments for Enterprise Teams
Che is Kubernetes-native and places everything the developer needs into containers in Kube pods including dependencies, embedded containerized runtimes, a web IDE, and project code. This makes workspaces distributed, collaborative, and portable to run anywhere Kubernetes runs ... Read More
Visit website at: https://eclipse.dev/che/ and documentation at: https://eclipse.dev/che/docs
Here you can find links on how to get started with Eclipse Che:
Open any Git repository as a Cloud Development Environment by navigating to your Che instance with a factory URL:
https://<your-che-host>/#https://github.com/<owner>/<repo>
For example, to open this repository:
https://<your-che-host>/#https://github.com/eclipse-che/che
Use the chectl CLI to create and manage workspaces:
# Start a workspace from a devfile
chectl workspace:start -f devfile.yaml
# Start a workspace from a remote devfile
chectl workspace:start -f https://raw.githubusercontent.com/eclipse/che/main/.devfile.yaml
# List running workspaces
chectl workspace:list
# Stop a running workspace
chectl workspace:stop <workspace-id>Add a devfile.yaml to your repository root to define your development environment:
schemaVersion: 2.3.0
metadata:
name: my-project
components:
- name: devtools
container:
image: quay.io/devfile/universal-developer-image:ubi9-latest
memoryLimit: 4G
mountSources: true
commands:
- id: build
exec:
commandLine: 'mvn clean install'
component: devtoolsWhen a devfile.yaml is present, Che automatically configures the workspace with the specified tools, runtimes, and commands.
- Customize Che workspaces for your projects
- Automatically run VSCode Extensions in Che workspaces
- Starting a workspace from a Git repository URL
- Making a workspace portable using a devfile
- Configure your instance of Che using the CheCluster Kubernetes Custom Resource
- Use and customize the embedded VSCode extensions registry
We love to hear from users and developers. Here are the various ways to get in touch with us:
- Support: You can ask questions, report bugs, and request features using GitHub issues.
- Public Chat: Join the public eclipse-che Slack channel to discuss with community and contributors.
- Twitter: @eclipse_che
- Mailing List: che-dev@eclipse.org
- Weekly Meetings: Join us in our Che community meeting every second monday.
If you are interested in fixing issues and contributing directly to the code base:
- 🐛 Submitting bugs
- 📄 Contributor license agreement
- 🏁 Development workflows
- 📝 Improve docs
- 🏗️ Che architecture
Che repositories- ✨ Good first issue for new contributors
- Customize the default dev tooling container (the universal developer image or UDI).
- Customize the list of getting started samples.
- Add your own editor definition.
We maintain the Che roadmap in the open way. We welcome anyone to ask question and contribute to the roadmap by joining our community meetings.
Eclipse Public License 2.0.

