-
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
markus javier edited this page Apr 8, 2025
·
1 revision
-
Clone the repository:
git clone https://github.com/your-username/raffle-management-system.git cd raffle-management-system -
Install PHP dependencies:
composer install -
Install NPM dependencies:
npm install -
Create environment file:
cp .env.example .env -
Generate application key:
php artisan key:generate -
Configure your database in the
.envfile:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=raffle_system DB_USERNAME=root DB_PASSWORD= -
Run migrations:
php artisan migrate -
Create storage link:
php artisan storage:link -
Build frontend assets:
npm run dev -
Start the development server:
php artisan serve
Visit http://localhost:8000 to access the application.