Initial commit of Vox English challenge system

This commit is contained in:
chaos
2026-03-17 00:05:46 +08:00
commit 8a055daf5e
41 changed files with 4790 additions and 0 deletions

26
README.md Normal file
View File

@@ -0,0 +1,26 @@
# Vox (词脉)
智能单词挑战系统。
- **极速**Svelte 5 + Tailwind 4
- **智能**:错题本 + 专项练习
- **持久**SQLite 存储
```bash
npm i && npm run dev # Port: 1995
```
## Docker
### 1. 使用 Docker CLI
```bash
docker build -t vox-app .
docker run -p 1995:1995 -v $(pwd)/data.db:/app/data.db vox-app
```
### 2. 使用 Docker Compose (推荐)
```bash
# 以后台模式运行
docker-compose up -d
# 查看日志
docker-compose logs -f
```