mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 19:04:23 +08:00
ae08ec45b0
- 添加Electron + React + TypeScript基础框架 - 实现学生管理、积分流水、理由管理功能 - 添加主题切换和暗黑模式支持 - 配置数据库和WebSocket同步功能 - 完善项目文档和构建配置
35 lines
525 B
Markdown
35 lines
525 B
Markdown
# secscore
|
|
|
|
An Electron application with React and TypeScript
|
|
|
|
## Recommended IDE Setup
|
|
|
|
- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
|
|
|
|
## Project Setup
|
|
|
|
### Install
|
|
|
|
```bash
|
|
$ pnpm install
|
|
```
|
|
|
|
### Development
|
|
|
|
```bash
|
|
$ pnpm dev
|
|
```
|
|
|
|
### Build
|
|
|
|
```bash
|
|
# For windows
|
|
$ pnpm build:win
|
|
|
|
# For macOS
|
|
$ pnpm build:mac
|
|
|
|
# For Linux
|
|
$ pnpm build:linux
|
|
```
|