mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
- Added DOCLING as third ETL_SERVICE option (alongside UNSTRUCTURED/LLAMACLOUD) - Implemented add_received_file_document_using_docling function - Added Docling processing logic in documents_routes.py - Enhanced chunking with configurable overlap support - Added comprehensive document processing service - Supports both CPU and GPU processing with user selection Addresses #161 - Add Docling Support as an ETL_SERVICE Follows same pattern as LlamaCloud integration (PR #123)
17 lines
364 B
Bash
17 lines
364 B
Bash
# Frontend Configuration
|
|
FRONTEND_PORT=3000
|
|
NEXT_PUBLIC_API_URL=http://backend:8000
|
|
|
|
# Backend Configuration
|
|
BACKEND_PORT=8000
|
|
|
|
# Database Configuration
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=surfsense
|
|
POSTGRES_PORT=5432
|
|
|
|
# pgAdmin Configuration
|
|
PGADMIN_PORT=5050
|
|
PGADMIN_DEFAULT_EMAIL=admin@surfsense.com
|
|
PGADMIN_DEFAULT_PASSWORD=surfsense
|