Cloud Migration Web UI

Nashwan Azhari 362250fa8f Merge pull request #454 from smiclea/export-endpoint 6 роки тому
.github 4f472cf299 Added Nodejs testing workflow 6 роки тому
.vscode 4fb60f64ce Add Flow VSCode settings 6 роки тому
flow-typed 9eb32c4b6a Add e2e integration tests using Cypress 8 роки тому
private 1a9fe1b19d Fix progress text getting outside of panel bounds 7 роки тому
public 0d39a85837 Coriolis with Atomic design implementation 8 роки тому
server 0233621597 Use zip for multiple endpoints download 6 роки тому
src 362250fa8f Merge pull request #454 from smiclea/export-endpoint 6 роки тому
.babelrc 7c2332e6d3 Replace alt.js with MobX for state management 8 роки тому
.dockerignore 4cee086424 Added Dockerfile 9 роки тому
.editorconfig 0d39a85837 Coriolis with Atomic design implementation 8 роки тому
.eslintignore 2dc2dd39d5 Add 'Planning' page with Azure Migrate support 8 роки тому
.eslintrc e8d9e32b3b Improve layout of instances list 7 роки тому
.flowconfig 7c2332e6d3 Replace alt.js with MobX for state management 8 роки тому
.gitignore 4fb60f64ce Add Flow VSCode settings 6 роки тому
Dockerfile 1948ecacc7 Bump node version to 12.5.0 7 роки тому
LICENSE 0d39a85837 Coriolis with Atomic design implementation 8 роки тому
README.md 4f472cf299 Added Nodejs testing workflow 6 роки тому
config.js 30dc5e7016 Enabled VMWare source options editing 6 роки тому
cypress.json 32b0c10d24 Increased requestTimeout to 10s 7 роки тому
package.json 0233621597 Use zip for multiple endpoints download 6 роки тому
server.js c3af7b1c18 Refactor NodeJS Server ES5 code to ES6 8 роки тому
webpack.config.js 3fbf97f0d6 Use a javascript source map for production builds 7 роки тому
yarn.lock 0233621597 Use zip for multiple endpoints download 6 роки тому

README.md

Coriolis Web

Web GUI for coriolis

Install instructions

  • node >=6.x and yarn are required
  • clone repo
  • run yarn install or yarn 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

Build instructions

  • run yarn build
  • run node server.js to start the server

Your server will be running at http://localhost:3000/

Testing

  • unit tests can be run using yarn test
  • e2e integration tests can be run using yarn cypress. First though, you have to create the private/cypress/config.js file using private/cypress/config.template.js as a template and then run yarn build and node server.

Development mode

  • 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