You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,17 @@ bun install
83
83
84
84
### 3. Configure Environment
85
85
86
-
Update environment variables in [`.env`](./.env) and `.env.local` files as well as Wrangler configuration in [`wrangler.jsonc`](./apps/api/wrangler.jsonc).
86
+
This project follows [Vite env conventions](https://vite.dev/guide/env-and-mode#env-files):
87
+
88
+
-[`.env`](./.env) is committed and contains shared defaults/placeholders only (no real secrets)
89
+
-`.env.local` is git-ignored and should contain your real credentials
90
+
-`.env.local` values override `.env`
91
+
92
+
```bash
93
+
cp .env .env.local # then replace placeholder values with real ones
94
+
```
95
+
96
+
Also check [`wrangler.jsonc`](./apps/api/wrangler.jsonc) for Worker configuration and bindings.
0 commit comments