Skip to content

adesr/larastarter

Repository files navigation

About LaraStarter

LaraStarter built to cut initial creation time of a laravel project. LaraStarter attempts to take the pain out of creating laravel project by adding a few of existing library, such as:

Setup

Place this project to anywhere in your environment, and then do following steps inside your project directory:

install dependencies

$ composer update

update .env file

APP_ENV=local
APP_KEY=base64:GwSQO63EgfObeRF+Ma5Uq9pRkYcAoZILi0HXor2p3Rc=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=larastarter
DB_USERNAME=user
DB_PASSWORD=pass

generate laravel's app key

php artisan key:generate

execute laravel's migration

php artisan migrate

execute laravel's seed

php artisan db:seed

run laravel application

php artisan serve