- Accept only PDF and JSON files in import modal and API - Convert PDF statements to JSON 1.0 via LLM (OpenAI-compatible) - Use multipart/form-data for file upload (multer, 15 MB limit) - Add LLM_API_KEY and LLM_API_BASE_URL for configurable LLM endpoint - Update ImportModal to validate type and send FormData - Add postFormData to API client for file upload
21 lines
632 B
Plaintext
21 lines
632 B
Plaintext
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=family_budget
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
|
|
APP_USER_LOGIN=admin
|
|
APP_USER_PASSWORD=changeme
|
|
|
|
SESSION_TIMEOUT_MS=10800000
|
|
|
|
PORT=3000
|
|
|
|
# Ключ OpenAI API для конвертации PDF-выписок в JSON (опционально)
|
|
# Без него импорт PDF будет недоступен (503)
|
|
LLM_API_KEY=
|
|
|
|
# Базовый URL API LLM (опционально). По умолчанию https://api.openai.com
|
|
# Примеры: Ollama — http://localhost:11434/v1, Azure — https://YOUR_RESOURCE.openai.azure.com/openai/deployments/YOUR_DEPLOYMENT
|
|
LLM_API_BASE_URL=
|