• Author: Xu Teck Tan, Wiktor Teter
• PHP 7.3 or higher
• Node 12.13.0 or higher
Setting up your development environment on your local machine:
git clone git@https://github.com/TXTEck/ServerSide_CA3.git
cp .env.example .env
composer install
php artisan key:generate
php artisan cache:clear && php artisan config:clear
npm run dev
php artisan db:seed
php artisan serve
click on link in terminal to view page
Create a database
go to PhpMyAdmin
Create a database of any name
Setup your database credentials in the .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE={Your Database Name}
DB_USERNAME={USERNAME}
DB_PASSWORD={PASSWORD}
Migrate the tables
php artisan migrate