A simple note management application for your standup meetings.
All the data is stored in your browser localStorage.
You can install the standup app onto your chrome via the chrome web store : Link
If you want to add more features to the app and try it out locally, please follow these steps:
- Clone the repo and
cd
into the directory. - Run
npm install
(this will install all the dependencies). - Run
gulp bower
(to install all the third party libs). - Run
gulp
(or)gulp build
(to bundle all the js files and generate a chrome-extension/dist directory). - cd into
chrome-extension/dist
directory and launch the index.html page. ( alternatively you could run any local server in this directory, for example http-server )
-
gulp verify
runsjshint
,jscs
andjest
unit tests. -
gulp watch
watches for changes undersrc/**/*.*
and runsgulp build
to re-generate thechrome-extension/dist
directory. -
use
npm test
to runjest
unit tests.
- Standup is a fun app build with ReactJS (Flux architecture), browserify and gulp.
- If you have a cool idea to improve it, please feel free to open a PR.
- Before opening a PR, just run
gulp verify
and make sure it passes :) - When you open a PR the Travis CI build will let you know if its good to merge.