Local Files
Configure local file system access
In meinGPT (UI)
For most teams, setup is done directly in meinGPT without editing local config files.
- Open admin settings in meinGPT
- Go to Data Pools / Data Sources
- Click Add Source and choose this source type
- Configure credentials and scope in the UI
- Save and trigger the first sync
If you do not run your own DataVault runtime, this is usually all you need.
On-Prem Runtime Configuration (Advanced)
data_pools:
- id: local
type: local
base_path: ./dataConfiguration Options
| Field | Type | Default | Required | Description |
|---|---|---|---|---|
id | string | - | ✅ | Unique identifier for the data pool |
type | string | - | ✅ | Must be "local" |
base_path | string | "./" | ❌ | Directory path to sync from |
Synchronization
- Vault scans
base_pathand syncs files into local ingest storage. - Changes are picked up in later sync runs (new/updated/deleted files).
- Use read-only mounts when possible to reduce operational risk.
Docker Setup
services:
vault:
volumes:
- ./data:/data/vault # Local directory
- /mnt/network:/data/network:ro # Network drive (read-only)Basic Operations
# Add files to sync
mkdir -p data
cp your-documents.pdf data/
# Check processing
docker compose logs vault | grep -i local→ Local File System Documentation
On-prem only: this source page is relevant when you operate your own DataVault runtime and configure data_pools yourself.