Make sure that docker and docker compose are installed on your machine.
- Install portable console emulator for Windows http://cmder.net/ and use it for executing commands
- Install GNUWin32 http://gnuwin32.sourceforge.net/packages/make.htm.
- Add GNUWin32 to your PATH env variable.
- Create your local configuration file
cp ./env.local ./env - Start docker containers
make start - Install composer dependencies
make composer-install - Install npm packapges
make npm-install - Migrate database with seeds
make migrate seed - Build front-end
make npm-dev - Open your app in browser http://localhost:8080
- Database cleanup
make truncate - Stop/Restart docker containers
make stopormake restart - SSH connect
make ssh - To enable npm watche use
make npm-watch - PHPUnit
make phpunit