All checks were successful
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 7s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m31s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 3m53s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Successful in 31s
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Successful in 5m24s
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 2s
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# ============================================================================
|
|
# KLZ Cables - 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/klz-cables.com/.env
|
|
#
|
|
# IMPORTANT: This file contains sensitive data and should NEVER be committed to git.
|
|
# ============================================================================
|
|
|
|
# Application
|
|
NODE_ENV=production
|
|
NEXT_PUBLIC_BASE_URL=https://klz-cables.com
|
|
|
|
# Analytics (Umami)
|
|
NEXT_PUBLIC_UMAMI_WEBSITE_ID=
|
|
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=KLZ Cables <noreply@klz-cables.com>
|
|
MAIL_RECIPIENTS=info@klz-cables.com
|
|
|
|
# Strapi
|
|
STRAPI_DATABASE_NAME=strapi
|
|
STRAPI_DATABASE_USERNAME=strapi
|
|
STRAPI_DATABASE_PASSWORD=
|
|
APP_KEYS=
|
|
API_TOKEN_SALT=
|
|
ADMIN_JWT_SECRET=
|
|
TRANSFER_TOKEN_SALT=
|
|
JWT_SECRET=
|
|
|
|
# Varnish Cache Size (optional)
|
|
VARNISH_CACHE_SIZE=256m
|