Web GUI for coriolis
- node >=6.x and yarn are required
- clone repo
- run
yarn install
oryarn install --production
to install packages and dependencies for development or production mode - change the
coriolisUrl
variable in ./src/config.js to match the Coriolis Server path
- run
yarn build
- run
node server.js
to start the server
Your server will be running at http://localhost:3000/
- unit tests can be run using
yarn test
- e2e integration tests can be run using
yarn cypress
. First though, you have to create theprivate/cypress/config.js
file usingprivate/cypress/config.template.js
as a template and then runyarn build
andnode server
.
- run
yarn start
to start local development server
Your development server will be running at http://localhost:3000/
This should be used only for development, as it contains live-reload and other development tools.
You can view some of the UIs components in the Storybook by running yarn storybook