aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Joshi <[email protected]>2025-10-29 06:53:57 +0530
committerGitHub <[email protected]>2025-10-28 18:23:57 -0700
commit82b135427e1cb421a7c38ea57f03166f39e24be1 (patch)
treedc1e0bebce7dd9a66f11d53553d4f9120911ea84
parentfeat(@supermemory/tools): capture assitant responses with filtered memory (#539) (diff)
downloadsupermemory-82b135427e1cb421a7c38ea57f03166f39e24be1.tar.xz
supermemory-82b135427e1cb421a7c38ea57f03166f39e24be1.zip
Updated contribute.md and .env.example for better onboarding (#536)
-rw-r--r--CONTRIBUTING.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1b040e8d..37b61d94 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -36,7 +36,16 @@ Before you begin, ensure you have the following installed:
# You'll need to add your API keys and database URLs
```
-4. **Start the Development Server**
+4. **Change middleware for local development**
+
+ Add this in your `middleware.ts`(apps/web) before retrieving the cookie (`getSessionCookie(request)`):
+
+ ```ts
+ if (url.hostname === "localhost") {
+ return NextResponse.next();
+ }
+
+5. **Start the Development Server**
```bash
bun run dev