Files
meetnote/api/.env.example
2026-04-13 19:12:14 +08:00

26 lines
602 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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