Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Latest commit

 

History

History

app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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:

$ npm install
$ npm run build

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

$ npm start

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

$ npm install
$ npm run buildwin

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

$ npm run startwin