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.ini
if necessary.
- Clone the repo
- Install dependencies -
composer install
- Copy contents of
.env.example
to 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
probe
and change DB_DATABASE in.env
- Run Migrations -
php artisan migrate
- Start FestAPI Server -
php artisan serve