Yrgo Portal is a school project with the objective of creating an online prescence for the Yrgo schools LIA events. Users can register as companies and as students and update their profiles.
The project is a collaboration between the Web Development class and the Digital Design class at Yrgo. This group consisted of two design students who made research and bult the design in Figma, and two developer students who built the page in Laravel and MySql.
Clone repo
git clone [https://github.com/Karlsson2/yrgo-portal.git]
Install
npm install
and
composer install
Generate a env file and key
cp .env.example .env
php artisan key:generate
php artisan storage:link
Create a local sql database
Migrate
php artisan migrate
Seed
php artisan db:seed --class=TechnologiesSeeder
php artisan db:seed
php artisan db:seed --class=LikeSeeder
To run start a vite and artisan server
npm run dev
php artisan serve