Skip to content

primeitclub/itc

Repository files navigation

PITC

About Prime IT Club

Prime IT Club is a student-run club working towards the goal of bridging the gap between academia and industry.

Contribute

Do you want to help? That’s awesome.

Here are some of the things you can do to help.

Contribute as a developer

Used frameworks:

Local Installation Guide

Please check the official Laravel installation guide for server requirements before you start.

Fork the repository and clone it (or download the zip file and extract it)

Example : (replace username with your github username)

git clone https://github.com:{username}/itc.git

Change directory to the project directory

cd itc

Install composer dependencies

composer install

Install npm dependencies

npm install

Copy the example .env.example in .env file

cp .env.example .env

Open and make the required configuration changes in the .env file

  • DB_DATABASE
  • DB_USERNAME
  • DB_PASSWORD

Generate an app encryption key

php artisan key:generate

Run the database migrations (Set the database connection in .env before migrating)

php artisan migrate

Seed the database (OPTIONAL)

php artisan db:seed

Seeds User,Blog Category and Event Category

Email Password
super@admin.com password

Start the local development server

php artisan serve

Or use Laravel sail

./vendor/bin/sail up

Now you can visit:

on your web-broswer to access the website.

Special thanks to