wftda-bouttime v0.0.23
Prerequisites
BoutTime requires version 0.10.x of node.js to run, which can be installed from their website. Note this is an older version and we are working on bringing the application up to date.
Alternatively, you may install node on OSX via Homebrew
$ brew install node010Using the Alpha Release
You can install the current alpha release via NPM (note: this software is not ready for production use).
$ npm install -g wftda-bouttimeOnce it is installed you can run it using the following command:
$ bouttime-serverWith the BoutTime server running in the background, open a browser to
http://localhost:3000 to use the app.
To update to a newer version, use this command:
$ npm update -g wftda-bouttimeNote: At this present moment, the software is considered alpha so we are discouraging regular installations in favor of local development installs. Please bear with us as we bring the app up to a releaseable state.
Development
Use setup.sh (i.e. ./setup.sh) to install the necessary dependencies or
follow the steps below to get your development environment up and running:
$ npm install -g bower gulp
$ npm install
$ npm link # Link from your globally installed node modulesgulp watch will automatically recompile assets when source files are changed
$ gulp watch # Build and watch for changes with gulpStart the server via bouttime-server or nodemon bin/bouttime-server to
listen for changes during development and navigate to http://localhost:3000.
Publishing
Publish package to the NPM repository:
$ #Bump version numbers
$ gulp package
$ git commit -am "Version bump"
$ git tag alpha.x.y.z #where alpha.x.y.z is the major,minor,version
$ git push origin master --tags
$ npm publish