ilan-WS / cloudify-stage

Cloudify's New UI Framework
Apache License 2.0
0 stars 0 forks source link

Cloudify Console

CircleCI Cypress.io tests

The Cloudify Console provides User Interface for managing and analyzing Cloudify Manager.

Cloudify Console screenshot

Requirements

The following requirements should be met prior starting the application:

Setup

To setup development environment and start the application follow the steps below.

  1. Configuration

    • Create conf/me.json file basing on conf/me.json.template.
    • Change <MANAGER_IP> into real IP of your Cloudify Manager in that file.
  2. Dependencies installation

    Run npm run beforebuild to install application dependencies.

  3. Database setup

    Run cd backend && npm run db-migrate to initialize database.

  4. Application start

    You can run the application by starting the stage backend server and starting webpack dev server serving client side:

    • In backend folder, run npm run devStart to start backend server
      NOTE: you will need to have write permissions to /var/log/cloudify/stage). For more information and troubleshooting visit backend.

    • And also run npm run devServer to start webpack dev server.

At this point you should have development environment configured and running. Open http://localhost:4000 page in your web-browser to see if application is running.

Changes in the source code shall be loaded to the development version of the application:

TypeScript support in IDEs

The project is written in TypeScript and is using project references to speed up type-checking of multiple subprojects.

Compilation results are stored in the tsc-dist directory. Keep in mind those are only used by the TypeScript compiler and are not used in the UI application. Keeping those files serves as a cache to speed up subsequent compilations.

When developing, make sure your IDE TypeScript plugin supports project references and is using the main tsconfig.json file as the configuration file. If your IDE uses project-specific tsconfig.json files (e.g. app/tsconfig.json for files in the app directory), your IDE will be doing unnecessary work compiling subprojects multiple times.

IDEs known to work with project references:

  1. VSCode
  2. WebStorm
  3. neovim LSP

    It requires a project-specific config or some other way to point to the main tsconfig.json. See https://github.com/neovim/nvim-lspconfig/issues/940#issuecomment-848902408

Package

You can create application package and deploy it on a remote Cloudify Manager server.

Package creation

You can create either tarball package or RPM package.

Tarball package

To create tarball package:

  1. Create production build by running: npm run build.
  2. Pack all necessary files into archive by running: npm run zip.
  3. Application package will be in stage.tar.gz file in repository main directory.

RPM package

To create RPM package:

  1. Push branch with your changes to the remote.
  2. Your RPM package will automatically be created by CircleCI (check Artifacts tab on the build-rpm job).

Package upload

To upload the package to the remote Cloudify Manager:

  1. Copy private SSH key to access Cloudify Manager to ~/.ssh/cloudify.key or explicitly define path to it: export SSH_KEY_PATH=<PATH>.
  2. Define Cloudify Manager IP address by specifying manager.ip in conf/me.json or by exporting environment variable: export MANAGER_IP=<MANAGER_IP>.
  3. Make sure tarball package (stage.tar.gz) is built or explicitly define path to the tarball or RPM package: export STAGE_PACKAGE=<PATH>.
  4. Run uploading script: npm run upload.
  5. Open browser and go to page http://<MANAGER_IP> to see if application is running.

Package content

Tarball package

Package tarball archive contains the following resources:

RPM package

RPM package has all the files present in tarball package. In addition all files from packaging/files directory are installed.

Tests

Go to test/README.md.

Documentation

  1. Source Code documentation

    • Frontend - client-side of the application
    • Backend - servers-side of the application
    • Widgets - widgets documentation
  2. Documentation way-of-work

    See this to learn how this project is documented.

Support

To get community support join Cloudify Community Slack.