Changed: README.md, Added: DEVELOPMENT.md

This commit is contained in:
Keisuke Hirata 2024-12-25 06:11:40 +09:00
parent d041e59698
commit 0457302e2c
2 changed files with 43 additions and 34 deletions

39
DEVELOPMENT.md Normal file
View File

@ -0,0 +1,39 @@
# 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.

View File

@ -1,37 +1,7 @@
# Farm + React # CoWorkingSpace
This template should help you start developing using React and TypeScript in Farm. ## Features
## Setup ## Development
Install the dependencies: Please refer to [Development](./DEVELOPMENT.md) for more information.
```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
```