Update packages. Format code with prettier

This commit is contained in:
2025-09-16 06:58:47 -05:00
parent d918a3d01a
commit 83e1a41ab8
28 changed files with 315 additions and 146 deletions

View File

@@ -38,11 +38,13 @@ You will also need docker installed on whatever host you plan to run the Convex
Copy the example environment variable files and paste them in the same directory named `.env`.
Environment variables for Next Application
```bash
cp ./apps/next/env.example ./apps/next/.env
```
Environment variables for Self Hosting Convex & Website with Docker
```bash
cp ./docker/env.example ./docker/.env
```
@@ -50,6 +52,7 @@ cp ./docker/env.example ./docker/.env
### Start self hosted convex & Next Web Application
The basic gist is to run the commands below after you have filled out the environment variables you plan to use, but you should ultimately follow the [guide they provide](https://github.com/get-convex/convex-backend/tree/main/self-hosted)
```bash
cd ./docker
sudo docker compose up -d
@@ -60,9 +63,9 @@ sudo docker compose exec convex-backend ./generate_admin_key.sh
Run
```bash
```bash
bun dev
```
```
### Fin