From 3a1acb48b607977f8613e3d678ea9c7142da885b Mon Sep 17 00:00:00 2001 From: davidasix Date: Mon, 18 Aug 2025 09:56:46 -0400 Subject: [PATCH 1/2] Updated deploy procedure --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 4eac224..7ff422e 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,19 @@ Do you build static sites for your clients, but struggle to integrate Google Rev - Web developers who design websites for small and local businesses. People who design statically generated websites can implement this tool to have their clients reviews show on the websites they build. +## Deployment Procedure + +All deployments to `main` must first be opened as a pull request targeting the `staging` branch for review. Use `staging` to validate changes in a realistic environment before anything reaches `main`. + +- PRs targeting `staging` must pass CI checks before they can be merged. +- Every deployment to `main` must be reviewed and approved by the repository code owner and reviewed by Copilot. +- If your changes include a Drizzle migration flag it as such as, the production database migration action will need to be run during the merge process: + +```bash +npm run db:production:migrate +``` + + ## Request Middleware System This project uses a composable middleware system that allows you to easily add authentication, body parsing, and other common functionality to API routes. The middleware can be chained together in any order, providing flexibility in how you structure your endpoints. From e13a5a141e7bf9ff8739c618bbd57668c70c609b Mon Sep 17 00:00:00 2001 From: davidasix Date: Mon, 18 Aug 2025 09:58:35 -0400 Subject: [PATCH 2/2] Updated color --- src/app/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/globals.css b/src/app/globals.css index 1c48192..3d2afb8 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -14,7 +14,7 @@ body { --card-foreground: 240 10% 3.9%; --popover: 0 0% 100%; --popover-foreground: 240 10% 3.9%; - --primary: 213 94% 68%; + --primary: 45 94% 68%; --primary-foreground: 0 0% 98%; --secondary: 240 4.8% 95.9%; --secondary-foreground: 240 5.9% 10%;