Files
kops-arm64/app
dependabot[bot] 3c6056dac3 Bump elliptic from 6.5.2 to 6.5.3 in /app (#267)
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-07-30 09:42:57 +02:00
..
2020-07-26 12:40:35 +02:00
2017-01-14 01:56:27 +01:00
2020-04-26 14:13:39 +02:00
2018-12-27 11:11:26 +01:00
2017-05-11 22:47:16 +02:00

This directory contains the EcmaScript frontend code of Kubernetes Operational View and is only needed during build time.

The JavaScript application bundle (webpack) will be generated to ``kube_ops_view/static/build/app*.js`` by running:

.. code-block:: bash

    $ npm install
    $ npm run build

Frontend development is supported by watching the source code and continuously recompiling the webpack:

.. code-block:: bash

    $ npm start

Windows uses slightly different scripts. This will build the JavaScript app in Windows:

.. code-block:: powershell

    $ npm install
    $ npm run buildwin

This will start the code watch and rebuild script in Windows:

.. code-block:: powershell

    $ npm run startwin