argo-cd/ui
2019-07-22 13:49:09 -07:00
..
scripts Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
src Issue #1935 - argocd app sync hangs when cluster is not configured #1935 (#1962) 2019-07-19 13:04:01 -07:00
.dockerignore Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
.gitignore Improve Circle CI builds (#1691) 2019-06-06 14:45:52 -07:00
.jshintrc Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
.nvmrc Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
Dockerfile Parameterize Argo UI base image (#1813) 2019-06-24 17:18:50 -07:00
jest.config.js Improve Circle CI builds (#1691) 2019-06-06 14:45:52 -07:00
LICENSE Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
package.json Bump js-yaml from 3.12.0 to 3.13.1 in /ui (#1966) 2019-07-22 13:48:30 -07:00
README.md Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
tslint.json Moves UI code into ui/ (#129) 2019-06-04 14:47:28 -07:00
yarn.lock Bump jquery from 3.3.1 to 3.4.1 in /ui (#1970) 2019-07-22 13:49:09 -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