this project is still under development - you can see changes on dev branch
The new user interface for Event Store. This is included as a submodule in the main Event Store repository.
Currently there are two ways to run the new UI:
- Open
index.html
located intsrc
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
needsgulp
to run, please see Dev information on how to install it.
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
npm install
4. (optional) you may want to install bower
npm install -g bower
to update packages
bower update
// 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