Adds pyproject.toml, environment.yml, Dockerfile, docker/web (Vue+nginx), compose.yml, compose.override.yml.example, manage.sh, .env.example, .gitignore, and config stubs for the pagepiper self-hosted PDF library tool. Port 8521. No secrets committed.
12 lines
416 B
Text
12 lines
416 B
Text
# Copy to .env and fill in your values. .env is gitignored.
|
|
|
|
# Path to your PDF library on the host machine
|
|
PAGEPIPER_BOOKS_DIR=/path/to/your/pdfs
|
|
|
|
# Data directory (SQLite + vector DB stored here)
|
|
PAGEPIPER_DATA_DIR=data
|
|
|
|
# Ollama URL — set this to unlock semantic search and RAG chat (BYOK)
|
|
# PAGEPIPER_OLLAMA_URL=http://localhost:11434
|
|
# PAGEPIPER_CHAT_MODEL=mistral:7b
|
|
# PAGEPIPER_EMBED_MODEL=nomic-embed-text
|