Command-line (CLI) Setup Fallback
Step-by-step guide on Command-line (CLI) Setup Fallback for EnvaTicket.
Command-line Setup Fallback
If you prefer installing EnvaTicket manually via terminal/SSH, follow these instructions:
- Upload the release zip contents to your server.
- Copy the environment template file:
cp .env.example .env - Open
.envand configure your application parameters:DB_CONNECTION(default:mysql)DB_HOST,DB_PORT,DB_DATABASE,DB_USERNAME,DB_PASSWORDAPP_URL(Your site domain)
- Install dependencies and generate the unique application encryption key:
composer install --no-dev --optimize-autoloader php artisan key:generate --force - Run database migrations and populate default permissions, roles, statuses, priorities, and mail templates:
php artisan migrate --seed --force - Link the public storage directory so avatars and attachments are accessible:
php artisan storage:link
3 views
Thanks for your feedback!
Was this helpful?