Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CLOUDFLARE_MIGRATION_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,10 +645,10 @@ Step-by-step deployment guide including:
- [ ] 5.5 Test deployment pipeline (user action required)

### Phase 6: Documentation
- [ ] 6.1 Update `README.md` with Cloudflare info
- [ ] 6.2 Create `CLOUDFLARE_DEPLOYMENT.md`
- [ ] 6.3 Update `.env.example`
- [ ] 6.4 Create troubleshooting guide
- [x] 6.1 Update `README.md` with Cloudflare info
- [x] 6.2 Create `CLOUDFLARE_DEPLOYMENT.md`
- [x] 6.3 Update `.env.example`
- [x] 6.4 Create troubleshooting guide

---

Expand Down
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,29 @@ This application is designed to be deployed on **Cloudflare** infrastructure:
| **MCP Server** | Cloudflare Containers | Clinical decision support tools |
| **Database** | Neon/Supabase + Hyperdrive | PostgreSQL with connection pooling |

See [CLOUDFLARE_MIGRATION_PLAN.md](./CLOUDFLARE_MIGRATION_PLAN.md) for deployment instructions.
### Quick Deploy

```bash
# Install Wrangler CLI
npm install -g wrangler

# Login to Cloudflare
wrangler login

# Deploy frontend
cd frontend && npm run build
wrangler pages deploy dist --project-name=renalguard-frontend

# Set up secrets
./scripts/setup-cloudflare-secrets.sh
```

### Documentation

- **[CLOUDFLARE_DEPLOYMENT.md](./docs/CLOUDFLARE_DEPLOYMENT.md)** - Complete step-by-step deployment guide
- **[CLOUDFLARE_MIGRATION_PLAN.md](./CLOUDFLARE_MIGRATION_PLAN.md)** - Migration architecture and planning
- **[DATABASE_SETUP.md](./docs/DATABASE_SETUP.md)** - Neon/Supabase database configuration
- **[CICD_SETUP.md](./docs/CICD_SETUP.md)** - GitHub Actions CI/CD pipeline setup

---

Expand Down
Loading
Loading