Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 784 Bytes

README.md

File metadata and controls

66 lines (50 loc) · 784 Bytes

SETUP

git clone https://github.com/Laurin-Notemann/beerpong 

Copy .env and check all the values

cp .env.example .env

Initial docker database

make docker-db-up

Stop docker database

make docker-db-stop

Start docker database

make docker-db-start

Remove docker database

make docker-db-down

How to Git

git clone https://github.com/Laurin-Notemann/beerpong 

Create new Feature

  1. Create new branch
git checkout -b "branch-name"
  1. Work on Feature

  2. Commit to branch

git add .
git commit -m "commit-msg"
  1. Push to branch
git push origin branch-name
  1. Create PR

  2. Wait for Approval

Setup of pre-commit

ln ./scripts/pre-commit .git/hooks/pre-commit