agent: End-to-end verification of contact form and email
Deploy to Production / Build & Verify (push) Failing after 5m53s
Ping Search Engines / Notify Search Engines (push) Successful in 6s
Deploy to Production / Pre-Deploy Tests (push) Has been skipped
Deploy to Production / Deploy to Railway (push) Has been skipped
Deploy to Production / Deploy to Render (push) Has been skipped
Deploy to Production / Deploy to VPS (PM2) (push) Has been skipped
Deploy to Production / Deploy to Fly.io (push) Has been skipped
Deploy to Production / Post-Deploy Verification (push) Has been skipped
Deploy to Production / Notify on Failure (push) Successful in 2s
E2E Test Suite / Critical User Journeys (push) Has been skipped
E2E Test Suite / API Integration Tests (push) Has been skipped
E2E Test Suite / Smoke Tests (P0) (push) Failing after 9m57s
E2E Test Suite / Form Interaction Tests (push) Failing after 12m47s
E2E Test Suite / Destructive & Chaos Tests (push) Failing after 12m18s
E2E Test Suite / Cross-Browser Regression (chromium) (push) Failing after 9m54s
E2E Test Suite / Cross-Browser Regression (firefox) (push) Failing after 11m31s
E2E Test Suite / Cross-Browser Regression (webkit) (push) Failing after 16m26s
E2E Test Suite / Security Header Tests (push) Failing after 7m57s
E2E Test Suite / Test Report Summary (push) Failing after 4s
E2E Test Suite / Mobile Device Tests (push) Failing after 3h11m8s
Uptime Monitor / SSL Certificate (push) Successful in 2s
Uptime Monitor / Health & Response Time (push) Successful in 3s
Uptime Monitor / Send Alerts (push) Has been skipped
Uptime Monitor / Record Uptime Success (push) Successful in 2s

This commit is contained in:
Ajay Ghanwat
2026-04-13 13:07:35 +05:30
parent 5898e97a27
commit 5a68c112cb
3 changed files with 25 additions and 3 deletions
+11 -3
View File
@@ -1,12 +1,20 @@
import { handler as ssrHandler } from './dist/server/entry.mjs';
import express from 'express';
import compression from 'compression';
import { config } from 'dotenv';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Load .env from the project root (same dir as server.mjs)
config({ path: join(__dirname, '.env') });
console.log('[server] Loaded .env from:', join(__dirname, '.env'));
console.log('[server] SMTP_HOST:', process.env.SMTP_HOST || 'NOT SET');
console.log('[server] CONTACT_EMAIL_TO:', process.env.CONTACT_EMAIL_TO || 'NOT SET');
import { handler as ssrHandler } from './dist/server/entry.mjs';
import express from 'express';
import compression from 'compression';
const app = express();
// Server configuration