From 16c19000642c2dc6296c60104c002d98516a89e9 Mon Sep 17 00:00:00 2001 From: John Yeo Date: Wed, 18 Jun 2025 13:33:08 +0100 Subject: [PATCH] test: fixed a few tests --- .github/CONTRIBUTING.md | 11 ++++++++--- README.md | 2 ++ server/tests/advanced/multiFeature/multiFeature2.ts | 2 +- server/tests/attach/basic/basic3.ts | 7 ++----- server/tests/attach/updateQuantity/updateQuantity1.ts | 2 +- server/tests/contUse/entities/entity1.ts | 2 +- 6 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index cff5118d7..37b37c98c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -14,7 +14,12 @@ git checkout -b feature/your-feature-name git checkout -b fix/your-bug-fix ``` -3. Commit Your changes with clear, descriptive messages +3. Commit your changes with clear, descriptive messages (you can use [commitizen](https://www.npmjs.com/package/commitizen) to help with this): +```bash +git commit -m "docs: added new code snippet to concepts.md" +# or +git commit -m "fix: fixed rounding error on priceUtils.ts" +``` 4. Fetch the latest updated repo and merge with your changes ```bash @@ -74,8 +79,8 @@ Use this approach if you prefer to configure your own database or tunneling solu 2. Copy `vite/.env.example` to `vite/.env` 3. Run the Docker command from Step 3 above ---- -### Database Management + +## Database Management Autumn uses Postgres as it's database solution, and Drizzle ORM to manage our queries / migrations. Our cloud offering uses Supabase to host Postgres, but you can use any hosting solution you'd like. At the moment, our docker compose does not spin up a database for you, so you'll have to do this yourself (we help you set up Supabase super easily in our set up script). diff --git a/README.md b/README.md index 0c3a1bb0a..934750a31 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,8 @@ await track({ **Support** 💬: If you need any type of support, we're typically most responsive on our [Discord channel](https://discord.gg/STqxY92zuS), but feel free to email us `hey@useautumn.com` too! + +