This is a Laravel project. Follow the steps below to install and run it locally.
- PHP >= 7.3
- Composer
- Node.js and NPM (optional for front-end assets)
- MySQL or any other database
-
Clone the repository:
git clone https://github.com/DavidBatoDev/pup_alumni_portal.git
-
Navigate to the project folder:
cd pup_alumni_portal cd client npm install cd ../server
-
Install dependencies:
composer install
-
Copy the
.env.example
file and configure your environment:cp .env.example .env
-
Generate an application key:
php artisan key:generate
-
Set up the database in the
.env
file. -
Run migrations:
php artisan migrate
-
Install dependencies and compile assets:
npm install
-
Serve the application:
Frontend: cd client npm run dev Backend: cd server php artisan serve
-
Access the app at
http://localhost:8000
.