Public Access
1
0

chore: automate docker deployment startup

This commit is contained in:
pguerrerox
2026-05-01 22:41:22 +00:00
parent dda123b803
commit a48c954945
5 changed files with 64 additions and 14 deletions
+5 -1
View File
@@ -5,7 +5,8 @@ NODE_ENV="development"
VITE_API_BASE_URL="http://localhost:4000/api"
VITE_GOOGLE_MAPS_PLATFORM_KEY="YOUR_BROWSER_MAPS_KEY"
# Local backend env vars
# Backend env vars
# For Docker Compose deployments, point DATABASE_URL at the internal "db" host.
# If your password contains special characters, URL-encode it in DATABASE_URL.
DATABASE_URL="postgres://postgres:postgres@localhost:5432/leads4less"
COOKIE_SECRET="CHANGE_ME_IN_LOCAL_ENV"
@@ -20,3 +21,6 @@ GOOGLE_MAPS_SERVER_KEY="YOUR_SERVER_MAPS_KEY"
POSTGRES_DB="leads4less"
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="CHANGE_ME_IN_LOCAL_ENV"
# Example Compose DATABASE_URL
# DATABASE_URL="postgres://postgres:CHANGE_ME_IN_LOCAL_ENV@db:5432/leads4less"