Installation

Installation Guide

Step 1: Download

Download the latest version of SupportKit from your account dashboard or use the provided download link.

Step 2: Upload Files

Extract the archive and upload all files to your web server.

# Using SSH
unzip supportkit-v1.0.zip -d /var/www/supportkit
cd /var/www/supportkit

# Set permissions
chmod -R 755 storage bootstrap/cache
chown -R www-data:www-data .

Step 3: Configure Environment

Copy the example environment file and configure your settings:

cp .env.example .env
php artisan key:generate

Step 4: Database Setup

Create a database and configure the connection in your .env file:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=supportkit
DB_USERNAME=your_username
DB_PASSWORD=your_password

Step 5: Run Migrations

php artisan migrate --seed

Step 6: Build Assets

npm install
npm run build
Done! Your SupportKit installation is ready. Visit your domain to complete the setup wizard.