Skip to content
Open
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
2 changes: 0 additions & 2 deletions CRYPTO_DECISIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,10 @@ The **frontend uses libsodium's sealed box** (`crypto_box_seal`) for encryption:
## Why Cold Start is Acceptable

1. **Vercel Function Reuse**: After first invocation, the container stays warm

- First request: ~300ms initialization
- Subsequent requests: < 10ms (no initialization)

2. **Typical Usage Pattern**: Users sync periodically, not constantly

- Most requests hit warm containers
- Cold starts are rare in production

Expand Down
4 changes: 0 additions & 4 deletions DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ You need a PostgreSQL database with SSL support. Recommended providers:
```

- **Neon**: Serverless PostgreSQL

- Sign up at [neon.tech](https://neon.tech)
- Create a new project
- Copy the connection string
Expand Down Expand Up @@ -74,20 +73,17 @@ Sign up at [vercel.com](https://vercel.com) if you don't have an account.
### Option B: Deploy via Vercel Dashboard

1. **Import your repository**:

- Go to [vercel.com/new](https://vercel.com/new)
- Import your Git repository
- Select the TodoApp project

2. **Configure Build Settings**:

- Framework Preset: `Other`
- Build Command: `bun install && bun run build`
- Output Directory: `dist`
- Install Command: `bun install`

3. **Add Environment Variables**:

- Go to Project Settings > Environment Variables
- Add the following:

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,11 @@ This app includes a backend API for secure task synchronization with zero-knowle
1. **Fork or clone this repository**

2. **Import the project to Vercel:**

- Go to [vercel.com](https://vercel.com)
- Click "Add New Project"
- Import your repository

3. **Configure environment variables in Vercel:**

- `DATABASE_URL`: Your PostgreSQL connection string with SSL
```
postgresql://user:password@host:5432/database?sslmode=require
Expand Down
Loading