Some checks failed
Build & Deploy / 🧪 QA (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🔍 Prepare (push) Failing after 3h3m59s
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# ============================================================================
|
|
# E-TIB - Production Environment Configuration
|
|
# ============================================================================
|
|
# This file contains runtime environment variables for the production deployment.
|
|
# It should be placed on the production server at: /home/deploy/sites/e-tib.com/.env
|
|
#
|
|
# IMPORTANT: This file contains sensitive data and should NEVER be committed to git.
|
|
# ============================================================================
|
|
|
|
# Application
|
|
NODE_ENV=production
|
|
NEXT_PUBLIC_BASE_URL=https://e-tib.com
|
|
|
|
# Analytics (Umami)
|
|
UMAMI_WEBSITE_ID=d773ea10-a3b3-4ccf-9024-987e14c4d669
|
|
UMAMI_API_ENDPOINT=https://analytics.infra.mintel.me
|
|
|
|
# Error Tracking (GlitchTip/Sentry)
|
|
SENTRY_DSN=
|
|
|
|
# Email Configuration (Mailgun)
|
|
MAIL_HOST=smtp.eu.mailgun.org
|
|
MAIL_PORT=587
|
|
MAIL_USERNAME=
|
|
MAIL_PASSWORD=
|
|
MAIL_FROM=E-TIB GmbH <noreply@e-tib.com>
|
|
MAIL_RECIPIENTS=info@e-tib.com
|
|
|
|
# Varnish Cache Size (optional)
|
|
VARNISH_CACHE_SIZE=256m
|