Getting started
What is Codewind?
Getting started - Overview
Deploying Codewind remotely
VS Code
1. Installing Codewind for VS Code
2. Creating your first Codewind project with Codewind for VS Code
3. Making a code change with VS Code
4. Uninstalling Codewind for VS Code
Eclipse
1. Installing Codewind for Eclipse
2. Creating your first Codewind project with Codewind for Eclipse
3. Making a code change with Eclipse
4. Uninstalling Codewind for Eclipse
IntelliJ
Using Codewind remotely
1. Overview: Using Codewind remotely
2. Connecting your IDE to remote Codewind
3. Adding an image registry in remote Codewind
4. Creating and importing projects
Using Codewind on Eclipse Che
1. Installing Eclipse Che for Codewind
2. Adding an image registry in Codewind on Eclipse Che
3. Creating a Codewind workspace in Eclipse Che
4. Creating your first Codewind project with Codewind for Eclipse Che
5. Making a code change with Codewind for Eclipse Che
6. Uninstalling Codewind for Eclipse Che
OpenShift Do (odo) support in Codewind
Working with templates
Developing projects
Understanding application and build statuses
Importing existing projects
Project actions
Project settings
Referencing files external to a project
Adding the OpenShift internal registry with Codewind
Developing with packages from private registries and repositories
Linking your projects
Using Codewind offline
Debugging in Codewind
Performance monitoring
Eclipse Codewind tool for OpenAPI
Configuring Codewind for Tekton pipelines
Troubleshooting
Referencing files external to a project
You can define references to files that reside outside of a project.
To do this:
- Create a file called
.cw-refpaths.json
in your project - Define the references as follows:
{
"refPaths": [
{
"from": "",
"to": ""
}
]
}
Where:
refPaths
is an array of references. A reference’sfrom
property is an absolute or relative path to the file you are referencing. Note that you cannot reference directories.- The reference’s
to
property is a path relative to the root of the project.
Codewind copies the contents of the file that is being referenced, and places it in the file specified by the to
path when building and running the project.
Last update: Jun 19, 2020