Skip to content

SRE-ITB/SRE-ITB-frontend

Repository files navigation

SRE ITB Frontend

Tech Stack

Setup and Installation

  1. Clone repo
git clone https://github.com/SRE-ITB/SRE-ITB-frontend.git
  1. Install dependencies
yarn
  1. Start the app
yarn dev

Branching and Commit Messages

Setiap membuat branch baru harus ambil base dari main. Untuk penamaan commit dan branch mengikuti format berikut. Format branch: <type>/<title>, contoh feat/Navbar. Format commit: <type>: <subject>, contoh feat: add navbar. Penamaan menggunakan camel case

Untuk type mengikuti semantic berikut.

  • feat: (new feature for the user, not a new feature for build script)
  • fix: (bug fix for the user, not a fix to a build script)
  • docs: (changes to the documentation)
  • style: (formatting, missing semi colons, etc; no production code change)
  • refactor: (refactoring production code, eg. renaming a variable)
  • test: (adding missing tests, refactoring tests; no production code change)
  • chore: (updating grunt tasks etc; no production code change)