OpenStack Task Tracking Browser Client
Go to file
Adam Coldrick 4540658a00 Make the Tags resource look for existing tags to filter by
This commit causes the search bars to suggest existing tags based on
what the user types, rather than just suggesting they try to filter
by tags matching exactly what they've typed.

Change-Id: Ibf9809f270616f495efd255ba253d8d741ba423a
Depends-on: If13b29d050abd66428c6787121d6b61b357bc9fb
2016-06-17 12:01:17 +01:00
bin Removed nodeenv dependency 2014-08-12 17:02:07 -07:00
src Make the Tags resource look for existing tags to filter by 2016-06-17 12:01:17 +01:00
test Make the docs-draft build point to storyboard-dev 2016-05-19 14:19:55 +00:00
.eslintignore Removed grunt:eslint in favor of just running eslint 2016-04-12 07:29:06 -07:00
.eslintrc Render descriptions and comments as Markdown 2015-09-22 10:04:53 +00:00
.gitignore Display the most recent commit SHA on the about page 2015-12-16 15:41:39 +00:00
.gitreview Initial commit 2014-01-14 18:49:39 -08:00
bower.json Include moment-timezone to stop all the warnings about it 2016-06-01 12:53:27 +00:00
Gruntfile.js Removed grunt-bower 2016-06-06 09:13:44 -07:00
karma.conf.js Renamed karma-unit.conf.js 2016-05-18 16:54:01 +00:00
LICENSE Initial commit 2014-01-14 18:49:39 -08:00
package.json Removed grunt-bower 2016-06-06 09:13:44 -07:00
protractor-integration.conf.js Initial proposal for integration tests 2015-04-07 11:05:19 +02:00
protractor.conf.js Enabled eslint:strict 2015-03-16 14:02:36 -07:00
README.md Updated README 2016-05-04 12:02:31 -07:00
tox.ini Removed nodeenv dependency 2014-08-12 17:02:07 -07:00

Storyboard Web Client

A WebClient for the OpenStack Storyboard project.

Project Resources

Getting Started

First of all be sure to have tox installed on your machine then:

  • Install the virtualenv containing nodejs: tox -evenv
  • Source the new path containing grunt: source .tox/venv/bin/activate
  • Now you can launch the grunt tasks of storyboard-webclient, by default run the development server with the following command: grunt serve

NPM Commands

The following are commands that may be used during project development.

  • npm run lint: Runs a linter on the javascript sources files of the project, this will help us keeping style consistency across our files and can reduce the risk of bugs.
  • npm run clean: Erases the temporary folders created by various grunt tasks, such as reports, cover and dist.
  • npm run build: Compile and packages our code.
  • npm run serve: Development server - runs a build and sets up concurrent watchers that will automatically lint, test, and refresh the code when a change is detected.
  • npm run test-unit: This command will create a clean build against which our unit tests will be run. For more information, please see karma-unit.conf.js
  • npm run test-integration: This command will create a clean build against which our functional tests will be run. For more information, please see protractor-integration.conf.js
  • npm run test-functional: This command will create a clean build against which our functional tests will be run. For more information, please see protractor.conf.js

Grunt tasks

For more detailed development, the following commands are available via grunt. To run them, you will need to install grunt globally: npm install -g grunt.

  • compile: Compiles all of our sources in the dist directory.
  • package: Built code into a release package.
  • serve:dist: This task performs a full build of our application, and then runs that source in a local web server. It does no watching, it simply hosts the files.
  • serve:prod: This task is identical to 'server:dist', with the exception that it will proxy the API requests against the production API. USE WITH CAUTION