Skip to content

How to get started

Sanjay Krishna S R edited this page Nov 24, 2022 · 10 revisions

Firebase Setup:

  1. Install firebase using the following commands

    • npm install -g firebase-tools
  2. To deploy a firebase project, use firebase deploy command.

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 dev-angular bracnch.

Working Branch Naming conventions:

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

Main Branch should be a subBranch of Master.

The SubBranch should be describing 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.

Clone this wiki locally