update README (#11)

This commit is contained in:
Ben Senescu 2026-03-10 22:51:40 -04:00 committed by GitHub
parent 991799932f
commit a3b1f6e967
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,11 +139,19 @@ Reference these docs while deploying since the Cloudflare UI doesn't indicate wh
### Local Development Workflow ### Local Development Workflow
```sh ```sh
cp .env.example .env.local
pnpm install pnpm install
# Run once per fresh local DB # Run once per fresh local DB
pnpm run db:migrate:local pnpm run db:migrate:local
```
Configure .env.local:
1. `cp .env.example .env.local`
2. Add `AUTH_MODE=local_noauth` so that it doesn't expect Cloudflare Access
3. Add `DATAFORSEO_API_KEY=yourkey`
Run Locally:
```
# Option 1 # Option 1
pnpm run dev pnpm run dev