Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.32 KB

CONTRIBUTE.md

File metadata and controls

43 lines (33 loc) · 1.32 KB

Install and Start Development Server

Clone our repository with this command.

git clone https://github.com/BCSDLab/KOIN_COOP_WEB
cd KOIN_COOP_WEB

Install dependency package and Start the development server!

yarn
yarn start

We are using Yarn Berry (Yarn 3). Do not use npm install command. Use yarn to install dependencies.

Development flow

  • Set up your development environment.
  • Create an issue for the development task you are responsible for.
  • Make changes from the appropriate branch.
  • Develop your page following our code convention.
  • Ensure the code passes yarn lint before you commit.
  • When writing commit messages, follow our commit message guide.

Branch strategy

We are following git-flow transformation strategy.

  • main
    • Branch for production server
    • We are using main branch instead of production branch
    • We don't use version tag
  • feature
    • Make branch name like feature/#1/description. Number means github issue number
  • develop
    • Branch for development server
    • If you want to publish this version, Make a Pull Request to main branch
  • hotfix
    • Branch for production error
    • Make a Pull Request to main branch