|
#!/bin/bash |
|
|
|
|
|
echo "MCP Website Deployment Tool" |
|
echo "===========================" |
|
echo |
|
|
|
|
|
command -v zip >/dev/null 2>&1 || { echo "Error: zip is required but not installed. Aborting."; exit 1; } |
|
|
|
|
|
echo "Creating deployment package..." |
|
zip -r mcp-website.zip *.html *.css *.js *.svg README.md |
|
|
|
echo "Deployment package created: mcp-website.zip" |
|
echo |
|
|
|
|
|
echo "Deployment Options:" |
|
echo "------------------" |
|
echo "1. Standard Web Hosting:" |
|
echo " - Upload mcp-website.zip to your web hosting provider" |
|
echo " - Extract the files maintaining directory structure" |
|
echo |
|
echo "2. GitHub Pages Deployment:" |
|
echo " - Create a new GitHub repository" |
|
echo " - Push these files to the repository" |
|
echo " - Enable GitHub Pages in repository settings" |
|
echo |
|
echo "3. Vercel or Netlify Deployment:" |
|
echo " - Connect your GitHub repository to Vercel or Netlify" |
|
echo " - Configure build settings (not needed for this static site)" |
|
echo " - Deploy the site" |
|
echo |
|
echo "For all options, you can use your custom domain by configuring DNS settings" |
|
echo "according to your hosting provider's instructions." |
|
echo |
|
|
|
echo "Deployment package is ready!" |
|
|