This README explains how to set up and run this project locally.
Make sure you have the following installed on your system:
- PHP >= 8.4
- Composer
- MariaDB / PostgreSQL / SQLite (choose one)
- Node.js >= 18 & NPM (or Yarn / PNPM)
- Git
git clone <repository-url>
cd <project-folder>composer installCopy the example environment file:
cp .env.example .envUpdate the .env file with your database credentials:
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_passwordphp artisan key:generatephp artisan migrate(Optional) Seed the database:
php artisan db:seednpm installBuild frontend assets:
npm run buildFor development mode:
npm run devphp artisan serveThe application will be available at:
http://127.0.0.1:8000
This project is licensed under the MIT License.