Files
vip-coordinator/install.md
kyle dc4655cef4 Backup: 2025-06-07 19:48 - Script test
[Restore from backup: vip-coordinator-backup-2025-06-07-19-48-script-test]
2026-01-24 09:33:58 +01:00

2.1 KiB

🚀 VIP Coordinator - One-Line Installer

Deploy VIP Coordinator on any system with Docker in just one command!

Quick Install

Linux/Mac (Bash)

curl -sSL https://raw.githubusercontent.com/your-repo/vip-coordinator/main/setup.sh | bash

Windows (PowerShell)

iwr -useb https://raw.githubusercontent.com/your-repo/vip-coordinator/main/setup.ps1 | iex

Manual Installation

If you prefer to download and run manually:

Linux/Mac

# Download setup script
wget https://raw.githubusercontent.com/your-repo/vip-coordinator/main/setup.sh

# Make executable and run
chmod +x setup.sh
./setup.sh

Windows

# Download setup script
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/your-repo/vip-coordinator/main/setup.ps1" -OutFile "setup.ps1"

# Run setup
.\setup.ps1

What the installer does

  1. Interactive Configuration: Collects your deployment details
  2. Generates Files: Creates all necessary configuration files
  3. Docker Setup: Generates docker-compose.yml with latest images
  4. Security: Generates secure random passwords
  5. Documentation: Creates README with your specific configuration
  6. Management Scripts: Creates start/stop/update scripts

Requirements

  • Docker and Docker Compose installed
  • Internet connection to pull images
  • Google Cloud Console account (for OAuth setup)

After Installation

The installer will create these files in your directory:

  • .env - Your configuration
  • docker-compose.yml - Docker services
  • start.sh/.ps1 - Start the application
  • stop.sh/.ps1 - Stop the application
  • update.sh/.ps1 - Update to latest version
  • README.md - Your deployment documentation

Quick Start After Install

# Start VIP Coordinator
./start.sh        # Linux/Mac
.\start.ps1       # Windows

# Open in browser
# Local: http://localhost
# Production: https://your-domain.com

Support

  • 📖 Full documentation: DEPLOYMENT.md
  • 🐛 Issues: GitHub Issues
  • 💬 Discussions: GitHub Discussions

🎉 Get your VIP Coordinator running in under 5 minutes!