first commit

This commit is contained in:
2026-03-04 08:33:10 -05:00
commit d8ed5d5dce
6 changed files with 494 additions and 0 deletions

22
.env.example Normal file
View File

@@ -0,0 +1,22 @@
# 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