update Readme for install instructions and a sample prod env file

This commit is contained in:
Nabeel Shahzad
2017-12-06 11:22:04 -06:00
parent ac0f163090
commit 2f5b476afa
5 changed files with 48 additions and 18 deletions

View File

@@ -13,9 +13,14 @@ build:
@composer install --no-interaction
@php artisan config:cache
.PHONY: db
db:
@php artisan database:create --reset
@php artisan migrate:refresh --seed
.PHONY: install
install: build db
echo ""
@echo "Done!"
.PHONY: clean
clean:
@@ -32,13 +37,7 @@ clean:
.PHONY: reset
reset: clean
@php artisan database:create --reset
@php artisan migrate:refresh --seed
.PHONY: db
db:
@php artisan database:create --reset
@php artisan migrate:refresh --seed
@make install
.PHONY: unittest-db
unittest-db: