chore: Update comments in environment configuration files to clarify BASE_URL usage

This commit is contained in:
greirson
2025-05-09 07:59:14 -07:00
parent c75d200c70
commit 5177752a6a
3 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,8 @@
# Port for the server (default: 3000)
PORT=3000
# Base URL for the application (default: http://localhost:PORT)
# Base URL for the application (default: http://localhost:PORT) -
# You must update this to the url you use to access your site
BASE_URL=http://localhost:3000/
# Node environment (default: development)

View File

@@ -52,6 +52,7 @@ services:
# Upload without clicking button
AUTO_UPLOAD: false
# The base URL for the application
# You must update this to the url you use to access your site
BASE_URL: http://localhost:3000
```
Then run:

View File

@@ -13,7 +13,7 @@ services:
MAX_FILE_SIZE: 1024 # Maximum file size in MB
DUMBDROP_PIN: 123456 # Optional PIN protection (4-10 digits, leave empty to disable)
AUTO_UPLOAD: true # Upload without clicking button
BASE_URL: http://localhost:3000 # The base URL for the application
BASE_URL: http://localhost:3000 # The base URL for the application, You must update this to the url you use to access your site
# Additional available environment variables (commented out with defaults)
# PORT: 3000 # Server port (default: 3000)