postgres-operator/ui/app
Felix Kunde 32d202e346 Initial commit for our basic Postgres Operator UI:
* Create and modify Postgres manifests
 * Watch Operator Logs in the UI
 * Observe cluster creation progress
 * S3 Backup browser for clone and restore

Many thanks to Manuel Gomez and Jan Mussler for the initial UI work a long time ago!
2019-07-12 14:34:38 +02:00
..
src Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
.eslintignore Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
.eslintrc.yml Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
README.rst Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
package-lock.json Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
package.json Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00
webpack.config.js Initial commit for our basic Postgres Operator UI: 2019-07-12 14:34:38 +02:00

README.rst

This directory contains the EcmaScript frontend code of the PostgreSQL Operator UI and is only needed during build time.

The JavaScript application bundle (webpack) will be generated to ``operator_ui/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