23 lines
794 B
Plaintext
23 lines
794 B
Plaintext
# Copy to .env and fill in your values
|
|
|
|
# URL of your Firefly Data Importer (FIDI) instance
|
|
FIDI_URL=http://localhost:8080
|
|
|
|
# FIDI auto-import secret (set in FIDI config under AUTO_IMPORT_SECRET)
|
|
# Leave blank if not configured
|
|
FIDI_SECRET=
|
|
|
|
# Firefly III Personal Access Token (optional — needed if FIDI requires auth)
|
|
FIDI_ACCESS_TOKEN=
|
|
|
|
# Directory containing .json/.csv import pairs (default: ./imports)
|
|
# JSON configs live here permanently; processed CSVs are staged here by watch-imports.sh
|
|
IMPORT_DIR=./imports
|
|
|
|
# Directory where raw CSV files are dropped (default: ./incoming)
|
|
# watch-imports.sh monitors this and moves files to IMPORT_DIR after processing
|
|
INCOMING_DIR=./incoming
|
|
|
|
# Set to "true" to automatically run import.sh after watch-imports.sh stages a file
|
|
AUTO_IMPORT=false
|