A platform to match mentors and mentees and facilitate a 12 week mentorship journey.
Clone the repo locally:
git clone https://github.com/jasontame/project-thrive.git project-thrive
cd project-thrive
Install PHP dependencies:
composer install
Install NPM dependencies:
npm install
Build assets:
npm run dev
Setup configuration:
cp .env.example .env
Generate application key:
php artisan key:generate
This application uses MySQL as the database by default. You'll need to have MySQL installed and ensure the DB user specified in the .env
file has permissions to manage
your database. The default database name is project_thrive
, you can adjust according to your needs.
Once your local DB and user are setup, run database migrations:
php artisan migrate
Run database seeder:
php artisan db:seed