# ============================================ # SINGLE-USER BASICAUTH QUICK START # ============================================ # Simplest deployment mode - one user, credentials in environment # Use for: Personal instances, local development, testing # # Copy this file to .env and fill in your credentials # ===== REQUIRED SETTINGS ===== # Your Nextcloud instance URL (without trailing slash) NEXTCLOUD_HOST=http://localhost:8080 # Your Nextcloud credentials NEXTCLOUD_USERNAME=admin NEXTCLOUD_PASSWORD=password # ===== OPTIONAL: EXPLICIT MODE DECLARATION ===== # Recommended to avoid ambiguity MCP_DEPLOYMENT_MODE=single_user_basic # ===== OPTIONAL: SEMANTIC SEARCH ===== # Uncomment to enable AI-powered semantic search # Requires: Qdrant + embedding provider (Ollama or Bedrock) # #ENABLE_SEMANTIC_SEARCH=true #QDRANT_LOCATION=:memory: #OLLAMA_BASE_URL=http://ollama:11434 #OLLAMA_EMBEDDING_MODEL=nomic-embed-text # ===== OPTIONAL: DOCUMENT PROCESSING ===== # Extract text from PDFs, images, DOCX for semantic search #ENABLE_DOCUMENT_PROCESSING=true #ENABLE_UNSTRUCTURED=true #UNSTRUCTURED_API_URL=http://unstructured:8000 # That's it! Single-user mode is the simplest to configure. # For more options, see env.sample