mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-11-02 21:13:40 +00:00
- Added Apprise integration for flexible notifications - Added notification environment variables - Added notification logging - Updated documentation with setup instructions - Added Python and Apprise to Dockerfile
12 lines
479 B
Plaintext
12 lines
479 B
Plaintext
# Server Configuration
|
|
PORT=3000 # The port the server will listen on
|
|
|
|
# Upload Limits
|
|
MAX_FILE_SIZE=1024 # Maximum file size in MB (default: 1024 MB / 1 GB)
|
|
|
|
# Security
|
|
DUMBDROP_PIN= # Optional 4-digit PIN protection (leave empty to disable)
|
|
|
|
# Notifications
|
|
APPRISE_URL= # Apprise URL for notifications (leave empty to disable)
|
|
APPRISE_MESSAGE= # Custom message for notifications (default: "File uploaded: {filename}") |