Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
John Cowen 9c0233cf59 Revert "ui: Add partition parameter when clearing child-selector forms in ACLs" 3 years ago
..
app Revert "ui: Add partition parameter when clearing child-selector forms in ACLs" 3 years ago
blueprints ui: Partitions Application Layer (#11017) 3 years ago
config ui: Allow disabling of sourcemaps via env var (#10491) 3 years ago
docs ui: Don't default to the default namespace, use the token default namespace instead (#10503) 3 years ago
lib ui: [BUGFIX] Fix KV Code Editor syntax loading (#10605) 3 years ago
mock-api ui: Partitions Application Layer (#11017) 3 years ago
node-tests/config ui: Add Admin Partition feature flag (#10051) 4 years ago
public Update brand assets (#10081) 4 years ago
server ui: CSP Improvements (#9847) 4 years ago
tests ui: [BUGFIX] Re-enable namespace menus whilst editing intentions (#11095) 3 years ago
translations ui: Hide all metrics for ingress gateway services (#10858) 3 years ago
vendor ui: [BUGFIX] Fix KV Code Editor syntax loading (#10605) 3 years ago
.dev.eslintrc.js ui: Move to Workspaced Structure (#8994) 4 years ago
.docfy-config.js ui: CopyButton amends (#10511) 3 years ago
.editorconfig ui: Move to Workspaced Structure (#8994) 4 years ago
.ember-cli ui: Default to glimmer components (#9121) 4 years ago
.eslintignore ui: Move linting to the `node:test` script (#9385) 4 years ago
.eslintrc.js ui: Remove storybook, add docfy (#9831) 4 years ago
.istanbul.yml ui: Move to Workspaced Structure (#8994) 4 years ago
.nvmrc ui: Bump node to v14 (#10238) 4 years ago
.prettierrc ui: Move to Workspaced Structure (#8994) 4 years ago
.template-lintrc.js ui: Search/filtering 'Filtered by:' search status (#9442) 4 years ago
.watchmanconfig ui: Move to Workspaced Structure (#8994) 4 years ago
GNUmakefile ui: Move linting to the `node:test` script (#9385) 4 years ago
README.md ui: Enable specifying additional docfy config as json (#10464) 3 years ago
ember-cli-build.js ui: Allow disabling of sourcemaps via env var (#10491) 3 years ago
package.json ui: Add intl debug helpers (#10513) 3 years ago
testem.js ui: Add an optional environment variable to control how testem starts (#9793) 4 years ago

README.md

consul-ui

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone https://github.com/hashicorp/consul.git this repository
  • cd ui/packages/consul-ui
  • make start or yarn && yarn start

Yarn Commands

Most used tooling scripts below primarily use make which will yarn install and in turn call node package scripts.

List of available project commands. yarn run <command-name>

Command Description
build:staging Builds the UI in staging mode (ready for PR preview site).
build:ci Builds the UI for CI.
build Builds the UI for production.
lint Runs all lint commands.
lint:hbs Lints hbs template files.
lint:js Lints js files.
format Runs all auto-formatters.
format:js Auto-formats js files using Prettier.
format:sass Auto-formats scss files using Prettier.
start Runs the development app on a local server using the mock API.
start:consul Runs the development app local server using a real consul instance as the backend.
start:staging Runs the staging app local server.
test Runs the ember tests in a headless browser.
test:view Runs the ember tests in a non-headless browser.
test:oss Runs only the OSS ember tests in a headless browser.
test:oss:view Runs only the OSS ember tests in a non-headless browser.
test:coverage:view Runs only the test specified for coverage in a non-headless browser.
test:node Runs tests that can't be run in ember using node.
doc:toc Automatically generates a table of contents for this README file.

Running / Development

The source code comes with a small development mode that runs enough of the consul API as a set of mocks/fixtures to be able to run the UI without having to run consul.

You can also run the UI against a normal Consul installation.

  • consul server -dev to start consul listening on http://localhost:8500
  • make start-consul to start the ember app proxying to consul (this will respect the CONSUL_HTTP_ADDR environment variable to locate the Consul installation.
  • Visit your app at http://localhost:4200.

Example:

CONSUL_HTTP_ADDR=http://10.0.0.1:8500 make start-consul

Environment Variables

See ./docs/index.mdx

Contributing/Engineering Documentation

We have an in-app (only during development) component storybook and documentation site which can be visited using the Eng Docs link in the top navigation of the UI.

Browser 'Debug Utility' Functions and 'Environment' Variables

Run make start then visit http://localhost:4200/ui/docs/bookmarklets for a list of debug/engineering utilities you can use to help development of the UI under certain scenarios.

Code Generators

Many classes used in the UI can be generated with ember generators, try ember help generate for more details

Running Tests

Tests use the mock api (see ./mock-api for details)

  • make test or yarn run test
  • make test-view or yarn run test:view to view the tests running in Chrome

OSS only tests can also be run using:

  • make test-oss or yarn run test:oss
  • make test-oss-view or yarn run test:oss:view to view the tests running in Chrome

Linting

make lint currently runs linting on the majority of js files and hbs files (using ember-template-lint).

See .eslintrc.js and .eslintignore for specific configuration.

Building

  • make build builds the UI for production usage (env=production)
  • make build-ci builds the UI for CI/test usage (env=test)

Static files are built into ./dist

Running Tests in Parallel

Alternatively, ember-exam can be used to split the tests across multiple browser instances for faster results. Most options are the same as ember test. To see a full list of options, run ember exam --help.

Note: The EMBER_EXAM_PARALLEL environment variable must be set to override the default parallel value of 1 browser instance in testem.js.

To quickly run the tests across 4 parallel browser instances:

make test-parallel

To run manually:

$ EMBER_EXAM_PARALLEL=true ./node_modules/.bin/ember exam --split <num> --parallel

More ways to split tests can be found in the ember-exam README.md.