/EventStore.UI

The user interface for Event Store

Primary LanguageJavaScript

EventStore.UI

The new user interface for Event Store. This is included as a submodule in the main Event Store repository.

Running new UI

Currently there are two ways to run the new UI:

  • Open index.html located int src folder in browser.
  • Execute gulp connect - this command gulp-connect run webserver with LiveReload (see dev section for info how to set up gulp if you are new to it) - gulp connect needs gulp to run, please see Dev information on how to install it.

Dev

To start developing it's best to install few things

1. install node.js if you havent done that already

2. install gulp.js

npm install -g gulp

3. install all node packages in project

npm install

4. install bower

npm install -g bower

to install bower components

bower install

5. gulp commands avaliable

// starts webserver with live reload
gulp connect 

// execute jshint
gulp lint

// transforming html file tamples into anguler.js module
gulp html

// building project - creating minified version of css, js etc.
gulp dist