A base repo for a Laravel app with MySql under Nginx on Dokku server.
composer install
artisan serve
APP_KEY
from .env file.dokku apps:create myapp
dokku config:set detective APP_KEY={you_key}
dokku mysql:create myapp_db
dokku mysql:link myapp_db myapp
dokku mysql:info myapp_db --dsn
dokku config:set detective DATABASE_URL={the_url_above}