RETIRED, Ironic HTTP(S) Client
Go to file
Michael Krotscheck a4798afe90 Created common navigation header
This patch adds the nodes/drivers navigation header in
accordance to the approved UI specification. The state
chart had to be adjusted to make room for the driver
section, and a new common ironic root state has
been introduced to ensure that the menu remains
constant.

Change-Id: I57fe522a067d515aa5253888ef6c121c4b95bd61
2016-03-23 04:49:26 -07:00
app Created common navigation header 2016-03-23 04:49:26 -07:00
test Created common navigation header 2016-03-23 04:49:26 -07:00
.editorconfig Added shareable EditorConfig 2015-06-22 09:05:45 -07:00
.eslintignore Upgraded eslint 2016-02-16 11:42:22 -08:00
.eslintrc Upgraded eslint-plugin-angular 2016-02-19 05:29:01 -08:00
.gitignore Added ./dist directory to .gitignore 2016-02-19 05:29:14 -08:00
.gitreview Added .gitreview file 2015-07-01 09:46:31 -07:00
LICENSE Initial commit 2015-03-18 11:04:55 -07:00
README.md Add note about nodejs-legacy to README 2015-10-02 16:01:09 -07:00
bower.json Updated ui-bootstrap 2016-03-23 04:33:44 -07:00
gulpfile.js Updated eslint plugins 2016-03-23 04:33:44 -07:00
karma.conf.js Updated eslint plugins 2016-03-23 04:33:44 -07:00
package.json Updated eslint plugins 2016-03-23 04:33:44 -07:00

README.md

ironic-webclient

A webclient for OpenStack Ironic.

Important Things

It is imperative that the design and infrastructure of this project makes it easy to package for various linux distributions. As such, the following decisions have been made:

#####The project must be fully functional directly from source.

  • ECMAScript 5 only, no transpiled languages such as TypeScript or CoffeeScript.
  • All javascript libraries used at runtime (in the browser) must be committed to source.

Note that we do not guarantee performance if running in this mode. Certain things, such as in-browser CSS compilation will severely degrade the performance of this application.

The project must be easy to develop on.
  • We use common javascript tooling to assist in development (npm, gulp, eslint, bower, etc).
  • These tools are supportive, but not required, as such they are considered to be environmental, and thus not committed to source.

#####The project must be compatible with the OpenStack License.

  • All runtime dependencies and development tools must use licenses compatible with the Apache2.0 license.

Development Server

  1. Check out the code.
  2. Run npm install
    1. Realize that you don't have node installed. Install node, and npm.
    2. If using a Debian/Ubuntu system, also install node.js and nodejs-legacy.
    3. Then try again.
  3. Run npm start

Other options

// Will resolve all the runtime dependencies. Remember to commit them.
npm run update_dependencies

// Will package the site.
npm pack

// Will spin up a local server and host the raw, unpackaged application.
npm start