Skip to content

Latest commit

 

History

History
70 lines (50 loc) · 1.42 KB

File metadata and controls

70 lines (50 loc) · 1.42 KB

Quick Start Guide - Deploying to Vercel from max-build4

For David - Quick Deployment Steps

1. Setup (One Time Only)

# 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.com

2. Make Changes

Edit files in the oasisweb4.com/ directory:

  • index.html - Main page content
  • styles.css - Styling
  • script.js - JavaScript

3. Deploy to Vercel

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-deploy

Option B: Manual Deployment

# From the oasisweb4.com directory
vercel --prod

4. Verify

Important Notes

  • Site Location: /oasisweb4.com/ directory in the OASIS repository
  • Branch: max-build4
  • Project: oasisweb4.com on Vercel
  • No build needed: It's a static site, just HTML/CSS/JS

Need Help?

See DEPLOYMENT_GUIDE.md for detailed instructions.