Follow these steps to set up the Artickets project locally:
- PHP 8.1 or higher
- Composer 2.0 or higher
- Node.js 16.x or higher
- MySQL 5.7+ or MariaDB 10.3+
- Git
git clone https://github.com/yourusername/artickets.git
cd articketscomposer installnpm installCopy the example environment file and generate application key:
cp .env.example .env
php artisan key:generateEdit the .env file to set your database credentials:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=artickets
DB_USERNAME=root
DB_PASSWORD=Run migrations and seeders:
php artisan migrate --seednpm run buildphp artisan serveThe application will be available at http://localhost:8000