Skip to content

Files

Latest commit

 

History

History
76 lines (50 loc) · 1.08 KB

README.md

File metadata and controls

76 lines (50 loc) · 1.08 KB

About Yrgo Portal

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.

Setup

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

Serve

To run start a vite and artisan server

npm run dev
php artisan serve