An open source webapp to track your workout of the day capturing key points of data.
- To install Ruby using RVM
rvm install 3.3.6
- Set the current ruby to the one installed above
rvm use 3.3.6
- Create the gemset needed for this project
rvm gemset create wod-tracker
make sure to use itrvm gemset use wod-tracker
- Ensure at a minimum bundler is install
gem install bundle
- run
bundle install
- run
yarn
- If using a Mac with homebrew you can install postgresql by running
brew install postgresql
- Run
rails db:setup
(If this is the first time you are setting the app up, else runrails db:migrate
) - Run
rails db:seed
- run
rails test
- run
rubocop
- run
rails s