21 lines
655 B
Plaintext
21 lines
655 B
Plaintext
---
|
|
title: Deploy Guide
|
|
description: Choose your deployment method
|
|
---
|
|
|
|
## Deploy with Vercel
|
|
|
|
[](https://vercel.com/new/clone?repository-url=https://github.com/oiov/wr.do.git&project-name=wrdo&env=DATABASE_URL&env=AUTH_SECRET&env=RESEND_API_KEY&env=NEXT_PUBLIC_EMAIL_R2_DOMAIN&env=NEXT_PUBLIC_OPEN_SIGNUP&env=GITHUB_TOKEN)
|
|
|
|
Remember to fill in the necessary environment variables.
|
|
|
|
## Deploy with Docker Compose
|
|
|
|
Create a new folder and copy the `docker-compose.yml` file to the folder.
|
|
|
|
Touch a `.env` file at the same level and fill in the environment variables, then:
|
|
|
|
```bash
|
|
docker compose up -d
|
|
```
|