Contribution Guide
How to contribute to the Ever Gauzy project.
Getting Started
- Fork the repository on GitHub
- Clone your fork locally
- Create a feature branch from
develop - Make your changes
- Submit a Pull Request
Development Setup
git clone https://github.com/YOUR_USERNAME/ever-gauzy.git
cd ever-gauzy
yarn install
yarn start:api # Terminal 1
yarn start # Terminal 2
Branch Naming
feature/SHORT-DESCRIPTION
bugfix/SHORT-DESCRIPTION
hotfix/SHORT-DESCRIPTION
docs/SHORT-DESCRIPTION
Commit Messages
Follow Conventional Commits:
feat: add employee avatar upload
fix: resolve time logging timezone bug
docs: add API quickstart tutorial
refactor: extract time service from controller