2024-11-03 17:37:08 +05:30
# App Setup
NODE_ENV=production # Set to 'development' or 'production' as required
2024-11-14 06:58:48 +05:30
JWT_SECRET=a9Z$kLq7^f03GzNw!bP9dH4xV6sT2yXl3O8vR@uYq3 # Replace with a secure JWT secret key
2024-11-03 17:37:08 +05:30
DB_NAME=maxun # Your PostgreSQL database name
DB_USER=postgres # PostgreSQL username
DB_PASSWORD=postgres # PostgreSQL password
DB_HOST=postgres # Host for PostgreSQL in Docker
DB_PORT=5432 # Port for PostgreSQL (default: 5432)
2024-11-14 06:59:27 +05:30
ENCRYPTION_KEY=f4d5e6a7b8c9d0e1f23456789abcdef01234567890abcdef123456789abcdef0 # Key for encrypting sensitive data (passwords and proxies)
2025-05-06 19:09:40 +05:30
SESSION_SECRET=maxun_session
2024-11-03 17:37:08 +05:30
MINIO_ENDPOINT=minio # MinIO endpoint in Docker
MINIO_PORT=9000 # Port for MinIO (default: 9000)
2024-12-04 20:58:31 +05:30
MINIO_CONSOLE_PORT=9001 # Web UI Port for MinIO (default: 9001)
2024-11-03 17:37:08 +05:30
MINIO_ACCESS_KEY=minio_access_key # MinIO access key
MINIO_SECRET_KEY=minio_secret_key # MinIO secret key
REDIS_HOST=redis # Redis host in Docker
REDIS_PORT=6379 # Redis port (default: 6379)
2025-03-12 22:01:32 +05:30
REDIS_PASSWORD=redis_password # Redis password (This is optional. Needed to authenticate with a password-protected Redis instance; if not set, Redis will connect without authentication.)
2024-11-03 17:37:08 +05:30
2024-12-04 20:58:31 +05:30
# Backend and Frontend URLs and Ports
BACKEND_PORT=8080 # Port to run backend on. Needed for Docker setup
FRONTEND_PORT=5173 # Port to run frontend on. Needed for Docker setup
2024-12-03 21:49:43 +05:30
BACKEND_URL=http://localhost:8080 # URL on which the backend runs. You can change it based on your needs.
2024-12-03 23:56:09 +05:30
PUBLIC_URL=http://localhost:5173 # URL on which the frontend runs. You can change it based on your needs.
2024-12-04 20:58:31 +05:30
VITE_BACKEND_URL=http://localhost:8080 # URL used by frontend to connect to backend. It should always have the same value as BACKEND_URL
2024-12-03 23:56:09 +05:30
VITE_PUBLIC_URL=http://localhost:5173 # URL used by backend to connect to frontend. It should always have the same value as PUBLIC_URL
2024-11-03 17:37:08 +05:30
# Optional Google OAuth settings for Google Sheet Integration
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_REDIRECT_URI=your_google_redirect_uri
2025-03-12 16:50:18 +05:30
# Optional Airtable OAuth settings for Airtable Integration
2025-02-07 22:25:54 +05:30
AIRTABLE_CLIENT_ID=your_airtable_client_id
AIRTABLE_REDIRECT_URI=http://localhost:8080/auth/airtable/callback
2025-03-12 16:50:18 +05:30
# Telemetry Settings - Please keep it enabled. Keeping it enabled helps us understand how the product is used and assess the impact of any new changes.
MAXUN_TELEMETRY=true