From b26902c22dfb44bb0c43e249183cf78cafa8225a Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 7 Mar 2026 22:41:57 -0600 Subject: [PATCH] Add backend environment variables example --- backend/.env.example | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 backend/.env.example diff --git a/backend/.env.example b/backend/.env.example new file mode 100644 index 0000000..8271a4e --- /dev/null +++ b/backend/.env.example @@ -0,0 +1,9 @@ +# Server Configuration +PORT=3000 +NODE_ENV=development + +# File Upload Settings +MAX_FILE_SIZE=10 + +# CORS Settings (development only) +CORS_ORIGIN=http://localhost:5173 \ No newline at end of file