# Database configuration DB_USER=postgres DB_PASSWORD=your_db_password DB_NAME=worklenz_db DB_HOST=localhost DB_PORT=5432 DB_MAX_CLIENTS=50 # Server configuration NODE_ENV=development PORT=3000 SESSION_NAME=worklenz.sid SESSION_SECRET=your_session_secret COOKIE_SECRET=your_cookie_secret # CORS SOCKET_IO_CORS=http://localhost:5000 SERVER_CORS=* # Storage configuration STORAGE_PROVIDER=s3 AWS_REGION=your_aws_region AWS_BUCKET=your_bucket_name S3_ACCESS_KEY_ID=your_access_key_id S3_SECRET_ACCESS_KEY=your_secret_access_key S3_URL=your_s3_url # Application URLs HOSTNAME=localhost:5000 FRONTEND_URL=http://localhost:5000 # For local development LOGIN_FAILURE_REDIRECT=http://localhost:5000 LOGIN_SUCCESS_REDIRECT=http://localhost:5000/auth/authenticate