Contribuer au projet
Guide de contribution
- Forker le projet
- Créer une branche (
git checkout -b feature/ma-fonctionnalite) - Commiter les changements (
git commit -m 'Ajout de ma fonctionnalité') - Pusher (
git push origin feature/ma-fonctionnalite) - Ouvrir une Pull Request
Convention de commits
feat: nouvelle fonctionnalité fix: correction de bug docs: documentation style: formatage refactor: refactorisation test: tests chore: maintenance
Environnement de développement
# Backend
cd tontine-backend
python -m venv venv
source venv/bin/activate
pip install -r requirements-dev.txt
# Frontend
cd tontine-mobile
flutter pub get