- 后端:Bun + Hono + Drizzle ORM + SQLite - 前端:Vue 3 + Naive UI + ECharts - 项目管理:创建项目 + 绑定 Git 仓库 - OKR 系统:目标/关键结果 CRUD + 进度追踪 - Git 同步:Gitea API 自动同步 commit/PR + 作者关联 - 数据看板:项目 OKR 进度 + KR 状态分布 + 代码活动 - 权限体系:admin/manager/developer/viewer 四级 - Docker 部署:docker-compose + nginx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
631 B
Plaintext
23 lines
631 B
Plaintext
# ---- Required ----
|
|
DATABASE_PATH=./data/devperf.db
|
|
JWT_SECRET=your-jwt-secret-here-change-in-production
|
|
PORT=3200
|
|
|
|
# ---- Plane Connection ----
|
|
PLANE_BASE_URL=http://plane-api:8000
|
|
PLANE_API_TOKEN= # Generate in Plane Settings > API Tokens
|
|
PLANE_WORKSPACE_SLUG=jasonqiyuan
|
|
|
|
# ---- Gitea Connection ----
|
|
GITEA_BASE_URL=http://gitea:3000
|
|
GITEA_API_TOKEN= # Generate in Gitea Settings > Applications
|
|
GITEA_ORG=jasonqiyuan
|
|
|
|
# ---- Sync Intervals (minutes) ----
|
|
SYNC_PLANE_INTERVAL=15
|
|
SYNC_GITEA_INTERVAL=30
|
|
|
|
# ---- Initial Admin ----
|
|
ADMIN_EMAIL=admin@jasonqiyuan.com
|
|
ADMIN_PASSWORD=Admin123!
|