Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lin-mt/quiet-web
管理项目迭代及项目文档。
https://github.com/lin-mt/quiet-web
project-documentation project-management
Last synced: 4 days ago
JSON representation
管理项目迭代及项目文档。
- Host: GitHub
- URL: https://github.com/lin-mt/quiet-web
- Owner: lin-mt
- Created: 2022-05-26T13:47:20.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T12:17:37.000Z (21 days ago)
- Last Synced: 2024-10-25T12:39:27.787Z (20 days ago)
- Topics: project-documentation, project-management
- Language: TypeScript
- Homepage: http://quiet.linmt.cn
- Size: 4.72 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quiet
## Environment Prepare
Install `node_modules`:
```bash
npm install
```or
```bash
yarn
```## Provided Scripts
Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test.
Scripts provided in `package.json`. It's safe to modify or add additional script:
### Start project
```bash
npm start
```### Build project
```bash
npm run build
```### Check code style
```bash
npm run lint
```You can also use script to auto fix some lint error:
```bash
npm run lint:fix
```### Test code
```bash
npm test
```