This commit is contained in:
2026-02-10 02:27:12 +01:00
parent 781a4c3a4e
commit 7ba96f6a03
10 changed files with 495 additions and 0 deletions

38
docs/getting-started.md Normal file
View File

@ -0,0 +1,38 @@
# Getting Started
## Install
```bash
bun install
```
## Environment
```bash
cp .env.example .env
```
## Database
```bash
bun run db:generate
bun run db:migrate
bun run db:seed
```
## Run apps
```bash
bun run dev
```
- Web: `http://localhost:3000`
- Admin: `http://localhost:3001`
## Run docs
```bash
bun run docs:dev
```
- Docs: `http://localhost:4173`