mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2025-12-23 22:48:57 -05:00
- Express.js backend for diagram CRUD operations - Filesystem persistence via Docker volume mount - Automatic storage detection in UI - Overwrite protection with confirmation dialogs - Server storage enabled by default in Docker Closes #48
15 lines
492 B
Plaintext
15 lines
492 B
Plaintext
# Server Storage Configuration
|
|
# Set to true to enable server-side storage for multi-device access
|
|
# Default is true - diagrams are saved to ./diagrams directory on the host
|
|
ENABLE_SERVER_STORAGE=true
|
|
|
|
# Git backup (optional)
|
|
# Set to true to automatically commit changes to git
|
|
ENABLE_GIT_BACKUP=false
|
|
|
|
# Storage path (inside container)
|
|
# This is mapped to ./diagrams on the host via Docker volume
|
|
STORAGE_PATH=/data/diagrams
|
|
|
|
# Backend port (usually doesn't need changing)
|
|
BACKEND_PORT=3001 |