diff options
| author | Dhravya Shah <[email protected]> | 2025-08-22 11:33:04 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-08-22 11:33:04 -0700 |
| commit | 6d6767bdcabeb9999dd1a75cdf88519e5a26197e (patch) | |
| tree | 18aff64c06c20cd3b8059ba01ec78d8216ec9f15 | |
| parent | feat: sentry integration (#376) (diff) | |
| download | supermemory-6d6767bdcabeb9999dd1a75cdf88519e5a26197e.tar.xz supermemory-6d6767bdcabeb9999dd1a75cdf88519e5a26197e.zip | |
fix: env vars
| -rw-r--r-- | apps/web/.gitignore | 1 | ||||
| -rw-r--r-- | apps/web/wrangler.jsonc | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/web/.gitignore b/apps/web/.gitignore index c740f883..f685d634 100644 --- a/apps/web/.gitignore +++ b/apps/web/.gitignore @@ -1,4 +1,5 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +.open-next/ # dependencies /node_modules diff --git a/apps/web/wrangler.jsonc b/apps/web/wrangler.jsonc index bdf74f19..674f6270 100644 --- a/apps/web/wrangler.jsonc +++ b/apps/web/wrangler.jsonc @@ -1,7 +1,7 @@ { "$schema": "node_modules/wrangler/config-schema.json", "main": ".open-next/worker.js", - "name": "supermemory-consumer", + "name": "supermemory-app", "compatibility_date": "2024-12-30", "compatibility_flags": [ // Enable Node.js API @@ -19,7 +19,7 @@ { "binding": "WORKER_SELF_REFERENCE", // The service should match the "name" of your worker - "service": "supermemory-consumer" + "service": "supermemory-app" } ], "r2_buckets": [ |