Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 1.12 KB

CONTRIBUTING.md

File metadata and controls

73 lines (49 loc) · 1.12 KB

Contribute

This repsoitory uses git conventional commits.

For commits the following types are used:

  • fix
  • bug
  • feat
  • chore
  • build
  • test
  • docs
  • ops

Configure Local Repository

Configure environment

The the following command from the {PROJECT_ROOT}.

git config include.path ../.gitaliases
git setup

Configure Local Docker Network

docker network create --subnet=172.50.0.0/16 --ip-range=172.50.50.1/24 --gateway=172.50.0.1 platform

Development

If you want to know which commands are available please run:

make help

Build everything

make all

Build latest

make build

Run latest

make run

Shell into container

make shell

Clean data of latest container

make clean

Specific version

All the previous commands can also be run for a specific version. Each make command can be appended with -<VERSION>. So to build only the PostgreSQL version 14 container one can issue make build-14. For more commands related to a specific version run make help.