← back to Billy Website

QUICKSTART.md

114 lines

# 🎸 Quick Start Guide

## Your website is READY and RUNNING!

### 🌐 Access Your Website

Open your browser and go to:
- **http://localhost:5300/**
- **http://45.61.58.125:5300/**

---

## 🚀 Server Management

### Check if server is running:
```bash
./status.sh
```

### Start the server:
```bash
./start.sh
```

### Stop the server:
```bash
./stop.sh
```

### View server logs:
```bash
tail -f server.log
```

---

## ✨ What's Included

Your website has these sections:
1. **Property Overview** - 4 bed, 3 bath, 2,818 sq ft
2. **Entertainment** - Sunset Strip, Hollywood Bowl, restaurants
3. **Festivals & Events** - 2025 LA events calendar
4. **The Area** - Interactive map with nearby attractions
5. **History** - Legendary Laurel Canyon music history
6. **Schools** - Local schools and education info
7. **Contact** - Inquiry form

---

## 🗺️ Free Interactive Map

The website uses **Leaflet + OpenStreetMap** (completely free, no API key needed!)
- Shows property location
- Marks nearby attractions
- Interactive popups

---

## 📝 Next Steps (Optional)

1. **Contact Form Setup**
   - Sign up at [Formspree.io](https://formspree.io)
   - Replace `YOUR_FORM_ID` in `index.html` with your form ID

2. **Add Real Photos**
   - Replace placeholder image URLs in `index.html`
   - Add photos to the `images/` folder

3. **Update Contact Info**
   - Edit `index.html` to add real email/phone numbers

---

## 🆘 Troubleshooting

**Server not responding?**
```bash
./stop.sh
./start.sh
```

**Check what's using port 5300:**
```bash
netstat -tlnp | grep 5300
```

**Kill any stuck processes:**
```bash
pkill -9 -f "node server.js"
./start.sh
```

---

## 📂 Project Structure

```
laurel-canyon-rental/
├── index.html       # Main website
├── css/style.css    # Styling
├── js/main.js       # Interactive features
├── server.js        # Web server
├── start.sh         # Start server
├── stop.sh          # Stop server
├── status.sh        # Check status
└── server.log       # Server logs
```

---

## 🎉 You're All Set!

Your Laurel Canyon luxury rental website is live and running on port 5300!