This is a Laravel-based project designed for event management. Follow the steps below to set up and run the project on your local system.
git clone https://github.com/Shankaranarayanansk/IQUD_Event-Laravel.git
cd IQUD_Event-Laravel
Run the following command to install PHP dependencies:
composer install
Then, install Node.js dependencies:
npm install
Copy the example environment file and modify it as needed:
cp .env.example .env
Then, update .env
with your database credentials:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_db_user
DB_PASSWORD=your_db_password
php artisan key:generate
php artisan migrate --seed
php artisan serve
The application will now be available at http://127.0.0.1:8000/
.
npm run dev
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
npm run build
This project is open-source and available under the MIT License.