The website that will contain all information and handle registrations for PROBE 2022.
- Install PHP (Preferably >= 7.0). Finishing the LAMP stack installation with phpmyadmin installation will help
- Install Composer
- Install PHP Extensions (MBString, Ext, Curl, GD, DOM). On Ubuntu for php7.0 you could do
apt install php7.0-gd php7.0-curl php7.0-ext php7.0-dom. You may need to uncomment the corresponding lines in yourphp.iniif necessary.
- Clone the repo
- Install dependencies -
composer install - Copy contents of
.env.exampleto a new file.env- Set DB_USERNAME and DB_PASSWORD to your localhost mysql credentials
- Create API Key -
php artisan key:generate - Create a DB
probeand change DB_DATABASE in.env - Run Migrations -
php artisan migrate - Start FestAPI Server -
php artisan serve