Add docs
This commit is contained in:
38
docs/getting-started.md
Normal file
38
docs/getting-started.md
Normal 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`
|
||||
Reference in New Issue
Block a user