Skip to content

How to get started

Sanjay Krishna S R edited this page Apr 28, 2023 · 10 revisions

Firebase Setup:

  1. Install Firebase using the following commands

    • npm install -g firebase-tools
  2. Use the firebase deploy command to deploy a firebase project.

How to clone:

  1. Fork the Worktez repository.
  2. Clone your fork: git clone <your forked repository>
  3. Add Upstream: git remote add upstream <Original Repository>
  4. Check the upstream: git remote -v

How to contribute:

  1. Pull the changes from upstream: git pull upstream dev-angular
  2. Create a branch: git branch <your branch name>
  3. Check out your branch: git checkout <your branch name>
  4. Make changes and commit them: git commit -a
  5. Push your changes: git push --set-upstream origin <your branch name>
  6. Create a pull request to the dev-angular branch.

Working Branch Naming conventions:

Main Branch should be Given as Feat or Fix to define it as a Feature or Fix, respectively.

Main Branch should be a sub-branch of the Master.

The SubBranch should describe the Component you are working on.

Eg: Fix/Dashboard Feat/Meets

Commit Message Conventions:

The commit message should be limited to 72 characters.

The First Part of the commit message should contain the Brach name you are working on.

The second Part of the commit message should give a brief of the changes done.

Eg: Fix(Dashboard): Improved Labels with Lazy loading