Skip to content

Instantly share code, notes, and snippets.

@bluerid
bluerid / create_laravel_app.sh
Created November 20, 2017 02:41 — forked from connor11528/create_laravel_app.sh
Create a new Laravel application
#!/bin/bash
laravel new $1
cd $1
composer install
yarn install
touch README.md
cp .env.example .env
git init
git add -A