2026-05-16 10:20:12 +06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Build the project
|
|
|
|
|
echo "Building project..."
|
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
|
|
# Create a deployment folder
|
2026-06-22 21:10:23 +06:00
|
|
|
echo "Preparing deployment files..."
|
2026-06-22 21:11:58 +06:00
|
|
|
rm -rf deploy deploy.zip
|
2026-05-16 10:20:12 +06:00
|
|
|
mkdir -p deploy
|
2026-06-22 21:10:23 +06:00
|
|
|
cp -r .next deploy/
|
|
|
|
|
cp -r public deploy/
|
|
|
|
|
cp server.js deploy/
|
|
|
|
|
cp package.json deploy/
|
|
|
|
|
cp next.config.ts deploy/
|
2026-05-16 10:20:12 +06:00
|
|
|
|
|
|
|
|
# Optional: Zip the files
|
|
|
|
|
echo "Zipping deployment files..."
|
|
|
|
|
cd deploy && zip -r ../deploy.zip . && cd ..
|
|
|
|
|
|
2026-06-22 21:10:23 +06:00
|
|
|
echo "Done! Upload 'deploy.zip' to your cPanel directory and follow the guide."
|