- composer
- a http webserver
- mysql
- check out this repository :-)
- Run
composer install
- Copy environment-configuration
copy .env.example .env
- Optional: customize your local config
- Run
./setup.sh
- Setup mysql scheme for your local app
- Run
mysql -e "create database score11;" -uroot
- import dump to
score11
scheme or runphp artisan migrate
on laravel root directory
- Run
- Setup mysql scheme for unit tests
- Run
mysql -e "create database score11_testing;" -uroot
- Run
php artisan --database=mysql_testing migrate
on laravel root directory
- Run
simply start your mysql + http webserver
Navigate to public
folder.
Example: running apache webserver and having all sources under /htdocs/score11
then navigate to http://localhost/score11/public
to get to the starting page.
simple run phpunit