18 lines
398 B
Plaintext
18 lines
398 B
Plaintext
# Database
|
|
DATABASE_URL=postgresql+asyncpg://postgres:1234567890@localhost:5432/edu_system
|
|
|
|
# Kimi API (get from https://platform.moonshot.cn/)
|
|
KIMI_API_KEY=
|
|
|
|
# JWT
|
|
JWT_SECRET=change-this-to-a-random-secret-key-in-production
|
|
JWT_ALGORITHM=HS256
|
|
JWT_EXPIRE_MINUTES=1440
|
|
|
|
# File Storage
|
|
UPLOAD_DIR=./storage/uploads
|
|
MAX_FILE_SIZE=10485760
|
|
|
|
# Frontend
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1
|