Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 445 Bytes

readme.md

File metadata and controls

19 lines (11 loc) · 445 Bytes

Laravel Pastebin

Laravel Pastebin.

Setting up a local development environment

Create sqlite database

  • touch app/database/local.sqlite

Create local database config

  • mkdir app/config/local
  • cp app/config/database.php app/config/local/database.php
  • Edit sql database line to be 'database' => __DIR__.'/../../database/local.sqlite',

Migrate

  • php artisan --env=local migrate