argo-cd/ui
dependabot[bot] 32f60d3504
chore(deps): bump browserslist from 4.7.2 to 4.16.6 in /ui (#6312)
Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.7.2 to 4.16.6.
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](https://github.com/browserslist/browserslist/compare/4.7.2...4.16.6)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-25 12:27:40 -07:00
..
__mocks__ Adds support for testing .tsx files. Closes #2610 (#2661) 2019-11-07 14:50:52 -08:00
scripts Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
src fix: UI should automatically retrigger SSO login after token expiration (#6309) 2021-05-24 10:50:47 -07:00
.babelrc Fixes the failing CI master build (#2697) 2019-11-12 16:10:35 -08:00
.dockerignore Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
.gitignore Fixes the failing CI master build (#2697) 2019-11-12 16:10:35 -08:00
.jshintrc Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
.nvmrc refactor: upgrade dependencies and node version (#4461) 2020-09-30 23:02:48 -07:00
.prettierrc Execute application label filtering on client side (#2605) 2019-10-30 18:42:04 -07:00
babel.config.js Adds support for testing .tsx files. Closes #2610 (#2661) 2019-11-07 14:50:52 -08:00
jest.config.js Adds support for testing .tsx files. Closes #2610 (#2661) 2019-11-07 14:50:52 -08:00
LICENSE Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
package.json chore(deps-dev): bump postcss from 7.0.21 to 8.2.10 in /ui (#6219) 2021-05-11 21:46:57 -07:00
README.md fix broken url and resize it (#3145) 2020-02-26 14:18:41 -08:00
tsconfig.json Adds support for testing .tsx files. Closes #2610 (#2661) 2019-11-07 14:50:52 -08:00
tslint.json fix: sync repository certificates UI with other pages(#4609) (#4971) 2020-12-07 23:30:29 -08:00
yarn.lock chore(deps): bump browserslist from 4.7.2 to 4.16.6 in /ui (#6312) 2021-05-25 12:27:40 -07:00

Argo CD UI

Argo Image

Web UI for Argo CD.

Getting started

  1. Install NodeJS and Yarn. On macOS with Homebrew, running brew install node yarn will accomplish this.
  2. Run yarn install to install local prerequisites.
  3. Run yarn start to launch the webpack dev UI server.
  4. Run yarn build to bundle static resources into the ./dist directory.

To build a Docker image, run IMAGE_NAMESPACE=yourimagerepo IMAGE_TAG=latest yarn docker.

To do the same and push to a Docker registry, run IMAGE_NAMESPACE=yourimagerepo IMAGE_TAG=latest DOCKER_PUSH=true yarn docker.

Pre-commit Checks

Make sure your code passes the lint checks:

yarn lint --fix