40 lines
378 B
Markdown
40 lines
378 B
Markdown
# Development
|
|
|
|
## Setup
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
pnpm install
|
|
```
|
|
|
|
## Get Started
|
|
|
|
Start the dev server:
|
|
|
|
```bash
|
|
pnpm start
|
|
```
|
|
|
|
Build the app for production:
|
|
|
|
```bash
|
|
pnpm build
|
|
```
|
|
|
|
Preview the Production build product:
|
|
|
|
```bash
|
|
pnpm preview
|
|
```
|
|
|
|
Clear persistent cache local files
|
|
|
|
```bash
|
|
pnpm clean
|
|
```
|
|
|
|
## Testing
|
|
|
|
Plan: Test serving using Nginx using Docker.
|