mirror of
https://github.com/rmoren97/mc-manager.git
synced 2026-02-10 17:40:30 -08:00
36 lines
985 B
Plaintext
36 lines
985 B
Plaintext
# ==================================================
|
|
# MC-Manager — Environment Variables
|
|
# Copy this file to .env.local and fill in values
|
|
# ==================================================
|
|
|
|
# --- Database ---
|
|
MONGODB_URI=mongodb://localhost:27017/mc-manager
|
|
|
|
# --- Authentication (JWT) ---
|
|
JWT_ACCESS_SECRET=change-me-access-secret-min-32-chars
|
|
JWT_REFRESH_SECRET=change-me-refresh-secret-min-32-chars
|
|
TWO_FACTOR_SECRET=change-me-2fa-secret-min-32-chars
|
|
|
|
# --- Email: Microsoft Graph API (primary) ---
|
|
# AZURE_TENANT_ID=
|
|
# AZURE_CLIENT_ID=
|
|
# AZURE_CLIENT_SECRET=
|
|
# GRAPH_SENDER_EMAIL=noreply@yourdomain.com
|
|
|
|
# --- Email: SMTP (fallback) ---
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=noreply@example.com
|
|
SMTP_PASS=your-smtp-password
|
|
SMTP_FROM=MC-Manager <noreply@example.com>
|
|
|
|
# --- Docker ---
|
|
MC_SERVERS_PATH=/opt/mc-servers
|
|
DOCKER_SOCKET=/var/run/docker.sock
|
|
DOCKER_UID=1000
|
|
DOCKER_GID=1000
|
|
|
|
# --- App ---
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
NODE_ENV=development
|