From 5177752a6a8b0e682b025931d5acda848fce83e7 Mon Sep 17 00:00:00 2001 From: greirson Date: Fri, 9 May 2025 07:59:14 -0700 Subject: [PATCH] chore: Update comments in environment configuration files to clarify BASE_URL usage --- .env.example | 3 ++- README.md | 1 + docker-compose.yml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 93b3137..9a57b1a 100644 --- a/.env.example +++ b/.env.example @@ -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) diff --git a/README.md b/README.md index b867f1c..ed077a9 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docker-compose.yml b/docker-compose.yml index 0364faf..2a70e37 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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)