Table of Contents

Download

GitHub HTTPS

   https://github.com/Bartek-Figat/TradeKeeper.git

GitHub Cli

   gh repo clone Bartek-Figat/TradeKeeper

Installation

Use the following script to install modules in the front-end and back-end directory

  yarn install

The command will start the front-end and back-end

  yarn dev

Gitflow

  • Checkout a new branch in your repo, use folder before, accordingly to branch intentions and the key after slash.
   git checkout -b hotfix/FE#1
  • Available folders names:

    • hotfix

    • feature

    • develop

    • When committing changes to your branch, use the key at the beginning of your commit message.

Font-end

   git commit -m "FE#1 some message"

Back-end

   git commit -m "BE#1 some message"
  • Merging with main branch. For example:
  git checkout main
  git merge hotfix/FE#1