update readme

This commit is contained in:
abiteman
2025-01-24 11:46:15 -06:00
parent 7195971785
commit bce7934de4
2 changed files with 16 additions and 0 deletions

8
.env.example Normal file
View File

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

View File

@@ -19,6 +19,14 @@ No auth (unless you want it now!), no storage, no nothing. Just a simple file up
- Drag and Drop Directory Support (Maintains file structure in upload)
- Optional PIN protection
## Environment Variables
| Variable | Description | Default | Required |
|--------------|----------------------------|---------|----------|
| PORT | Server port | 3000 | No |
| MAX_FILE_SIZE| Maximum file size in MB | 1024 | No |
| DUMBDROP_PIN | 4-digit PIN for protection | None | No |
# Future Features
- Camera Upload for Mobile
- Enhanced Progress Features (upload speed display, time remaining estimation)