All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Successful in 2m20s
Build & Deploy / 🏗️ Build (push) Successful in 4m22s
Build & Deploy / 🚀 Deploy (push) Successful in 23s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 5m16s
Build & Deploy / 🔔 Notify (push) Successful in 1s
- Fix PayloadRichText: migrate custom JSX converters to Lexical v3 nodesToJSX API - paragraph, heading, list, listitem, quote, link converters now use nodesToJSX - Resolves missing product texts since PayloadCMS migration - Fix mobile navigation: move overlay outside <header> to prevent fixed-position clipping - Header transform/backdrop-filter was containing the fixed overlay - Use bg-primary/95 backdrop-blur-3xl for premium blue background - Fix product image mobile layout: use md:-mt-32 responsive prefix - Negative margin only applies on md+ to avoid overlap on mobile - Improve mobile product page UX: - Breadcrumbs: flex-wrap, truncate, reduced separator spacing - Hero: reduced top padding pt-28 on mobile - Product image card: 4/3 aspect ratio and smaller padding on mobile - Section spacing: use responsive md: prefixes throughout - Data tables: 2-col grid on mobile, smaller card padding/radius - Tables: add right-edge scroll hint gradient on mobile
38 lines
2.1 KiB
Bash
38 lines
2.1 KiB
Bash
# Application
|
|
NODE_ENV=production
|
|
NEXT_PUBLIC_BASE_URL=https://klz-cables.com
|
|
UMAMI_WEBSITE_ID=e4a2cd1c-59fb-4e5b-bac5-9dfd1d02dd81
|
|
UMAMI_API_ENDPOINT=https://analytics.infra.mintel.me
|
|
SENTRY_DSN=https://c10957d0182245b1a2a806ac2d34a197@errors.infra.mintel.me/1
|
|
LOG_LEVEL=info
|
|
NEXT_PUBLIC_FEEDBACK_ENABLED=false
|
|
NEXT_PUBLIC_RECORD_MODE_ENABLED=false
|
|
NPM_TOKEN=263e7f75d8ada27f3a2e71fd6bd9d95298d48a4d
|
|
|
|
# SMTP Configuration
|
|
MAIL_HOST=smtp.eu.mailgun.org
|
|
MAIL_PORT=587
|
|
MAIL_USERNAME=postmaster@mg.mintel.me
|
|
MAIL_PASSWORD=4592fcb94599ee1a45b4ac2386fd0a64-102c75d8-ca2870e6
|
|
MAIL_FROM="KLZ Cables <postmaster@mg.mintel.me>"
|
|
MAIL_RECIPIENTS=marc@cablecreations.de,info@klz-cables.com
|
|
|
|
# ────────────────────────────────────────────────────────────────────────────
|
|
# Payload Infrastructure (Dockerized)
|
|
# ────────────────────────────────────────────────────────────────────────────
|
|
# The POSTGRES_URI and PAYLOAD_SECRET are automatically constructed and injected
|
|
# by docker-compose.yml using these base DB credentials, so you don't need to
|
|
# manually write the connection strings here.
|
|
PAYLOAD_DB_NAME=payload
|
|
PAYLOAD_DB_USER=payload
|
|
PAYLOAD_DB_PASSWORD=120in09oenaoinsd9iaidon
|
|
|
|
# ────────────────────────────────────────────────────────────────────────────
|
|
# Hetzner S3 Object Storage
|
|
# ────────────────────────────────────────────────────────────────────────────
|
|
S3_ENDPOINT=https://fsn1.your-objectstorage.com
|
|
S3_ACCESS_KEY=ROB3MSWMEIGRL7N94ZKS
|
|
S3_SECRET_KEY=9QJV3NE8xeLxhyufhNU7lsUB0RffJxPhGuEuFSH3
|
|
S3_BUCKET=mintel
|
|
S3_REGION=fsn1
|
|
S3_PREFIX=klz-cables |