Files
cnd2025-hw3/README.md
2024-03-27 00:15:28 +08:00

48 lines
433 B
Markdown

# Testing Lab
## Backend
Fastify Server
### Set your environment variable
```
cd backend
cp .env.sample .env
```
### Development
run a mongo container
```
docker run -d -p 27017:27017 mongo
```
start development mode
```
npm run dev
```
### Run the test
```
npm run test
```
## Frontend
React (by vite)
### Development
start development mode
```
cd frontend
npm run dev
```
### Run cypress test
```
npm run cy:test
```