This is the app for ninja management and training within CoderDojo Minho.
We use it to track ninja progress, secret missions (homework) and belt ranks.
Table of Contents
First, clone & setup the repository:
git clone [email protected]:coderdojominho/bokken.git
cd bokken
bin/setup
To start your development environment run:
bin/server
This will start the Rails app.
Deploys are run through Semaphore. They are deployed automatically to staging when the build on master is green and manually to production.
You can also add production
and staging
remotes to deploy. We recommend using parity
to manage it.
git remote add staging <heroku-staging-url>
git remote add production <heroku-production-url>
# deploying with parity:
staging deploy
production deploy
# deploying through git:
git push staging master
git push production master