This commit is contained in:
2026-05-24 15:32:36 +00:00
commit 1eb5350d09
20 changed files with 2852 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# excali
Private self-hosted Excalidraw with Bun and SQLite.
## Run locally
```bash
bun install
bun run dev
```
Open `http://localhost:3000`.
## Test
```bash
bun run test
bun run typecheck
```
## Build the image
```bash
docker build -t excali .
docker run --rm -p 3000:3000 -v "$PWD/data:/data" excali
```