Docs
Fonte: getting-started.md
Voltar ao showcase

Getting Started

This guide gets you from zero to a working installation with Trello + WhatsApp.

Prerequisites

  • Laravel app with queue configured
  • A public HTTPS endpoint for webhooks
  • Trello and WhatsApp credentials

Steps

  1. Install the package
composer require tonsoo/task-tracker
  1. Publish config
php artisan vendor:publish --tag=task-tracker-config
  1. Run migrations
php artisan migrate
  1. Configure .env See Configuration.

  2. Start the queue worker

php artisan queue:work
  1. Ensure the scheduler runs Configure your system scheduler to run:
php artisan schedule:run
  1. Set up WhatsApp webhooks See WhatsApp Cloud API Setup.

Next