nitrokite/marketing/build.sh
Farid Siddiqi a1360919f0
Some checks failed
Build and Deploy API Server & Frontend / deploy (push) Blocked by required conditions
Build and Deploy API Server & Frontend / build-backend (push) Has been cancelled
Build and Deploy API Server & Frontend / build-frontend (push) Has been cancelled
Add frontend React dashboard with CI/CD deployment pipeline
2025-12-25 22:08:03 -08:00

20 lines
368 B
Bash
Executable File

#!/bin/bash
set -e
echo "🚀 Building Nitrokite Marketing Site..."
# Navigate to marketing directory
cd "$(dirname "$0")"
# Install dependencies if needed
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
npm install
fi
# Build the site
echo "🔨 Building static site..."
npm run build
echo "✅ Build complete! Output in ./dist/"