# Clone the repository
git clone https://github.com/NextGenSoftwareUK/OASIS.git
cd OASIS
# Switch to max-build4 branch
git checkout max-build4
# Navigate to site directory (IMPORTANT: use oasisweb4.com, NOT new-v2)
cd oasisweb4.com
# Install Vercel CLI (if not already installed)
npm i -g vercel
# Login to Vercel
vercel login
# Link to the project
vercel link
# When prompted:
# - Select: max-gershfields-projects
# - Select: oasisweb4.comEdit files in the oasisweb4.com/ directory:
index.html- Main page contentstyles.css- Stylingscript.js- JavaScript
Option A: Automatic (if Vercel is connected to GitHub)
# Commit and push
git add .
git commit -m "Your changes"
git push origin max-build4
# Vercel will auto-deployOption B: Manual Deployment
# From the oasisweb4.com directory
vercel --prod- Site Location:
/oasisweb4.com/directory in the OASIS repository - Branch:
max-build4 - Project:
oasisweb4.comon Vercel - No build needed: It's a static site, just HTML/CSS/JS
See DEPLOYMENT_GUIDE.md for detailed instructions.