First off, thank you for considering contributing to MultiWA! It's people like you that make MultiWA such a great tool.
This project and everyone participating in it is governed by the MultiWA Code of Conduct. By participating, you are expected to uphold this code.
Before creating bug reports, please check the issue list as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible:
- Use a clear and descriptive title
- Describe the exact steps to reproduce the problem
- Describe the behavior you observed after following the steps
- Explain which behavior you expected to see instead
- Include logs if possible
Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion, please include:
- Use a clear and descriptive title
- Provide a step-by-step description of the suggested enhancement
- Explain why this enhancement would be useful
- Fork the repo and create your branch from
main - If you've added code that should be tested, add tests
- If you've changed APIs, update the documentation
- Ensure the test suite passes
- Make sure your code lints
- Issue that pull request!
# Clone your fork
git clone https://github.com/YOUR_USERNAME/multiwa.git
cd multiwa
# Install dependencies
pnpm install
# Start development
pnpm devmultiwa/
├── apps/
│ ├── api/ # NestJS API backend
│ └── admin/ # Next.js admin dashboard
├── packages/
│ ├── database/ # Prisma schema & migrations
│ ├── engines/ # WhatsApp engine adapters
│ ├── sdk/ # TypeScript SDK
│ ├── sdk-python/ # Python SDK
│ └── sdk-php/ # PHP SDK
└── docs/ # Documentation
- Use TypeScript for all new code
- Follow the existing code style
- Use meaningful variable and function names
- Add comments for complex logic
- Write tests for new features
By contributing, you agree that your contributions will be licensed under the MIT License.