26 lines
602 B
Plaintext
26 lines
602 B
Plaintext
# 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
|