VMS
Before installing, ensure you have the following tools:
- PHP >= 8.0
- Composer
- MySQL
-
Clone the repository:
git clone https://github.com/drilonmaloku/bug-venue-system.git cd bug-venue-system
-
Install PHP dependencies:
composer install
-
Copy the example environment file and edit it:
cp .env.example .env
`
-
Create the database:
Create a database in your MySQL
-
Run the migrations:
php artisan migrate
-
(Optional) Seed the database:
php artisan db:seed --class=ProductionSeeder
-
Start the local development server:
php artisan serve