From 49bca361a24bb830fb3445ac66aea37fa996bf76 Mon Sep 17 00:00:00 2001 From: SquadOps AI Date: Sat, 13 Jun 2026 02:55:52 -0300 Subject: [PATCH] docs: add CONTRIBUTING guide --- CONTRIBUTING.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..890ddde --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# Contributing to sabbath-school-web + +Thank you for your interest in contributing! Please follow these steps: + +1. **Fork the repository** and clone your fork. +2. **Create a new branch** for your changes: `git checkout -b feature/your-feature`. +3. **Install dependencies** with `npm install`. +4. **Make your changes**. Ensure code follows existing style (ESLint can be run with `npm run lint`). +5. **Run tests** (if any) with `npm test`. +6. **Commit** using conventional commits. +7. **Push** your branch and open a Pull Request targeting `main`. + +Please keep PRs small and focused, and include a clear description of the changes.