Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

coderdojobraga/bokken-attempt-1

Repository files navigation

Bokken

Build Status Trello Staging Production

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

Setup

First, clone & setup the repository:

git clone git@github.com:coderdojominho/bokken.git
cd bokken
bin/setup

Development

To start your development environment run:

bin/server

This will start the Rails app.

Deployment

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