/caritemen

This is final assignment for devscale bootcamp - batch 3

Primary LanguageJavaScript

Project CariTemen

How to use

Please follow the steps below to run the project.

git clone git@github.com:zadkhamaya/caritemen.git
cd caritemen
npm install
npm run dev

How to contribute

UI Design

  • Start with creating frontend UI before functionality
  • Use NextUI for UI components
  • Use TailwindCSS for styling
  • DO NOT use any other UI library

Functionality

  • Create a new branch for each feature
  • Create a pull request for each feature
  • DO NOT merge your own pull request

Commit Message Format

You have to follow the following format for commit message.

git commit -m "type: subject"

Type

Must be one of the following:

  • feat: A new feature
  • fix: A bug fix
  • chore: Changes to the build process or auxiliary tools and libraries such as documentation generation

Subject

The subject contains succinct description of the change:

  • use the imperative, present tense: “change” not “changed” nor “changes”
  • don't capitalize first letter
  • no dot (.) at the end

Examples

git commit -m "feat: add login page"
git commit -m "fix: login page not working"
git commit -m "chore: update readme"