mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-10-23 07:41:58 +00:00
19 lines
777 B
Plaintext
19 lines
777 B
Plaintext
# Server Configuration
|
|
PORT=3000 # The port the server will listen on
|
|
BASE_URL=http://localhost:3000 # The base URL for the application
|
|
|
|
# Upload Settings
|
|
MAX_FILE_SIZE=1024 # Maximum file size in MB
|
|
AUTO_UPLOAD=false # Enable automatic upload on file selection
|
|
|
|
# Security
|
|
DUMBDROP_PIN= # Optional PIN protection (4-10 digits)
|
|
DUMBDROP_TITLE=DumbDrop # Site title displayed in header
|
|
|
|
# Notifications (Optional)
|
|
APPRISE_URL= # Apprise URL for notifications (e.g., tgram://bottoken/ChatID)
|
|
APPRISE_MESSAGE=New file uploaded - {filename} ({size}), Storage used {storage}
|
|
APPRISE_SIZE_UNIT=auto # Size unit for notifications (auto, B, KB, MB, GB, TB)
|
|
|
|
DEMO_MODE=false
|