This repo contains code used in the Harness CD Community Edition which is licensed under the PolyForm Shield License 1.0.0. This repo also contains code belonging to Harness CD Enterprise Plan which is licensed under the PolyForm Free Trial License 1.0.0. You may obtain a copy of these licenses in the licenses directory at the root of this repository.
Harness Core UI
Grouped Code Coverage report for master branch: Coverage Report
Important Links
Documentation
Getting Started
-
Install NodeJS v16. There are many ways to do this (choose any one):
- Download relevant package from https://nodejs.org/download/release/v16.15.0/, unpack and install.
- Use Homebrew:
brew install node@16
- If you already have Node installed, use
nvm
orn
to install/select correct version. (see https://www.npmjs.com/package/n)
Note: Additional installation requirements for M1-based Macs found here
- Install yarn package manager
brew install yarn
Note: More options here: https://classic.yarnpkg.com/en/docs/install
- Clone this repo
git clone git@github.com:harness/harness-core-ui.git
cd harness-core-ui
- Add config to make Harness GitHub Package Registry accessible. Before running this step, make sure your GitHub personal access token is authorized for both "wings-software" and "harness", step is here: https://docs.github.com/en/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on
yarn setup-github-registry
Note: This is only needed if this is the first UI project you are installing on your machine
- Create self-assigned certificate before running the app
yarn generate-certificate
- Install/Update/Refresh dependencies
yarn
Note: This will take some time the first time you run it. Subsequent runs should be near-instant. Run this everytime you change branches or take a pull. If there are no dependency changes, this is practically a no-op.
Note: This is a shorthand for the command
yarn install
. Read more here: https://classic.yarnpkg.com/en/docs/usage
- Compile/Build the code and start the web-server in watch mode
yarn dev
Note: This will start the local server in watch mode with hot reloading. Any code changes will trigger fast patch rebuilds and refresh the page in the browser.
- View in the browser
Publishing
yarn build
yarn docker <tagname>
First command will create a production build (minified, optimised).
Second command will create a docker image and publish it to harness/nextgenui
Dockerhub repo.
Configuring Proxies (optional)
You can configure/manage proxies for local development in the file webpack.config.js
. Sample:
proxy: {
'/cd/api': {
logLevel: 'info',
target: 'http://localhost:7457',
pathRewrite: { '^/cd/api': '' }
}
},
Note: These proxies are only relevant for local development. This config file is used by
webpack-dev-server
package, which we use to serve files locally. This is not used in the docker builds.
The docker builds all use
nginx
to serve the built files, whose configuration is stored atscripts/nginx.conf
. This config is shared for prod builds, so please pay attention if making changes.
Auto-generating services
Local development against remote environments
You can configure the application to use remote environments such as uat.harness.io
, qa.harness.io
or qb.harness.io
to allow local UI development without the need to run backend services. To achieve this, two environment variables are available.
Variable | Default value | Description |
---|---|---|
BASE_URL |
https://qa.harness.io/gateway |
Location of backend services to access |
TARGET_LOCALHOST |
true |
Whether to use local backend services. Set to false to use remote services |
DISABLE_TYPECHECK |
false |
Whether to disable the ForkTsCheckerWebpackPlugin for local development |
SEGMENT_TOKEN |
Add your segment token here to enable telemetry for local development |
These environment variables can be passed in a number of ways including being set in your .bashrc
or .zshrc
file, set in a .env
file in the root of the application (see .env.example
), or passed when starting the dev server as below.
TARGET_LOCALHOST=false yarn dev
Utilities
Run lint checks
yarn lint
Run unit tests
yarn test
Enabling feature flags in local
To enable a feature flag in local development mode, just add an entry to .env
by prefixing the feature flag name with FF_
and setting its value to true
and (re)start your development server.
For example, if you want to enable a feature flag named MY_FETAURE_FLAG
. Just add an entry FF_MY_FEATURE_FLAG=true
in .env
file.
Note: This will only work when
NODE_ENV=development
is set.
Hotfix Process
- Find out which release branch you need to hotfix. You can do that checking the currently deployed version in the environment you want to hotfix. For e.g. For prod environment, you can hit https://app.harness.io/ng/static/version.json to get the currently deployed version. (eg.
0.53.4
) - Create a branch from the corresponding release branch (e.g.
release/0.53.x
) which you want to hotfix - Commit your changes on your branch
- Bump up the patch version in
package.json
(eg. 0.53.4 -> 0.53.5) - Raise PR with these changes
- When this PR gets merged, this Pipeline will create a new build for you automatically
- Please inform Ops/QE team to deploy your new build, especially in QA, UAT or prod environment.
- Make sure to raise a PR with the same changes (minus the version bump) for
develop
branch too. Otherwise, your changes will get overridden with next deployment.
For Windows environment setup only
Download Git bash for Windows
Use git bash for executing any git command, and it is also helpful to run scripts of package.json where shell script is used.
https://git-scm.com/download/win
Git clone
If you face any issue while taking clone of this repo in Windows operating system. Kindly refer below.
For development *NIX system is preferred. On Windows 10 you can use Ubuntu via WSL
Running scripts
To run various scripts of package.json , you need to modify the scripts. Example:-
- To run this script "dev": "NODE_ENV=development webpack-dev-server --progress", just change it to "dev": "SET NODE_ENV=development & webpack-dev-server --progress"
- To run this script "generate-certificate": "sh scripts/generate-certificate.sh", just change the path at the end of the script from (nodes -subj '/C=US') to (nodes -subj '//C=US')
- Make sure you have Microsoft Visual C++ Redistributable installed , you can download it from here (https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170)
Note: Similarly you can update the scripts part wherever needed as per above to run in Windows environment.