26 lines
462 B
YAML
26 lines
462 B
YAML
# NoteDiscovery Configuration
|
|
# Easy to rebrand: just change these values!
|
|
|
|
app:
|
|
name: "NoteDiscovery"
|
|
tagline: "Your Self-Hosted Knowledge Base"
|
|
version: "1.0.0"
|
|
|
|
server:
|
|
host: "0.0.0.0"
|
|
port: 8000
|
|
reload: false # Set to true for development
|
|
|
|
storage:
|
|
notes_dir: "./data/notes"
|
|
plugins_dir: "./plugins"
|
|
|
|
search:
|
|
enabled: true
|
|
index_dir: "./data/search_index"
|
|
|
|
security:
|
|
# Add authentication later if needed
|
|
require_auth: false
|
|
|