Thanks for contributing to VisaTrack.
- Create a feature branch from
develop. - Open a PR back to
develop. - Ensure CI checks pass before requesting review.
Frontend:
cd frontend
npm ci
npm run build
npm testBackend:
cd backend
python3.11 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
pytest- Keep PRs focused and reasonably sized.
- Update documentation when behavior or configuration changes.
- Add or update tests when possible.