Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 693 Bytes

readme.md

File metadata and controls

37 lines (28 loc) · 693 Bytes

Laravel Docker Development Environment

Starter configuration to develop docker virtualized laravel projects.

Requirements:

Available Commands

$ make install
# dependency installation and migrations
$ make up
# turn on server (8080 web, 33061 mysql) => http://www.appname.localhost:8080
$ make down
# turn off server
$ make install_test
# install test database
$ make test
# tests executions (phpunit)
# use TEST_ARGS to pass arguments. ej. make test TEST_ARGS='--filter TestClass'