• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-Nov-2018-

app/H03-May-2022-4,9954,771

config/H03-May-2022-

lib/startup/H03-May-2022-76

public/assets/H03-May-2022-

tests/H03-May-2022-1,5951,518

.editorconfigH A D13-Nov-2018383 2316

.ember-cliH A D13-Nov-2018316 119

.gitignoreH A D13-Nov-2018111 138

.nvmrcH A D13-Nov-20182

.prettierrcH A D13-Nov-201853 43

.watchmanconfigH A D13-Nov-201837 43

GNUmakefileH A D13-Nov-2018428 3220

README.mdH A D13-Nov-20181.1 KiB4025

package.jsonH A D13-Nov-20183.1 KiB103102

yarn.lockH A D13-Nov-2018352.8 KiB10,2578,702

README.md

1# consul-ui
2
3
4## Prerequisites
5
6You will need the following things properly installed on your computer.
7
8* [Git](https://git-scm.com/)
9* [Node.js](https://nodejs.org/) (with npm)
10* [yarn](https://yarnpkg.com)
11* [Ember CLI](https://ember-cli.com/)
12* [Google Chrome](https://google.com/chrome/)
13
14## Installation
15
16* `git clone https://github.com/hashicorp/consul.git` this repository
17* `cd ui-v2`
18* `yarn install`
19
20## Running / Development
21
22* `make start-api` or `yarn start:api` (this starts a Consul API double running
23on http://localhost:3000)
24* `make start` or `yarn start` to start the ember app that connects to the
25above API double
26* Visit your app at [http://localhost:4200](http://localhost:4200).
27* Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).
28
29
30### Code Generators
31
32Make use of the many generators for code, try `ember help generate` for more details
33
34### Running Tests
35
36You do not need to run `make start-api`/`yarn run start:api` to run the tests
37
38* `make test` or `yarn run test`
39* `make test-view` or `yarn run test:view` to view the tests running in Chrome
40