@bouttime/bouttime v0.0.30
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 nvm
$ export NVM_DIR="$HOME/.nvm"
$. "/usr/local/opt/nvm/nvm.sh"
$ nvm install 0.10.48Using the Alpha Release
You can install the current alpha release via NPM
WARNING!
Installing via NPM is not currently recommended. We recommend installing for local development
With the BoutTime server running in the background, open a browser to
http://localhost:3000 to use the app.
Note: 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 publish7 years ago