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-thriveInstall PHP dependencies:
composer installInstall NPM dependencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateThis 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 migrateRun database seeder:
php artisan db:seed