This commit is contained in:
eleanor.mao
2025-06-03 00:03:08 +08:00
commit 48f2c49c2b
100 changed files with 34596 additions and 0 deletions

35
README.md Normal file
View File

@ -0,0 +1,35 @@
## Environment Prepare
```bash
yarn
```
### Start project
```bash
yarn start
```
### Build project
```bash
yarn build
```
### Check code style
```bash
yarn lint
```
You can also use script to auto fix some lint error:
```bash
yarn lint:fix
```
### Test code
```bash
yarn test
```