auto-save 2026-04-13 19:12 (+1)

This commit is contained in:
2026-04-13 19:12:14 +08:00
parent 4bdc14f96c
commit 4f064bb470
8 changed files with 197 additions and 0 deletions

25
api/.env.example Normal file
View File

@@ -0,0 +1,25 @@
# MeetNote API config
# 数据库 - 本地 SQLite生产 PostgreSQL
DATABASE_URL=sqlite+aiosqlite:///./meetnote.db
# DATABASE_URL=postgresql+asyncpg://user:pass@127.0.0.1:5432/meetnote
# 对象存储 (MinIO)
MINIO_ENDPOINT=127.0.0.1:9000
MINIO_REGION=us-east-1
MINIO_BUCKET=meetnote
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
MINIO_SECURE=false
MINIO_PUBLIC_ENDPOINT=http://127.0.0.1:9000
# Groq Whisper
GROQ_API_KEY=
GROQ_MODEL=whisper-large-v3
# Poe Claude (复用全局)
POE_API_KEY=
POE_MODEL=Claude-Sonnet-4.6
# CORS
CORS_ORIGINS=http://localhost:4490,http://192.168.2.69:4490