2
1.2.4 Makefile
Simon Vieille edited this page 2018-10-09 16:32:12 +02:00
A Makefile is provided to automate some tasks.
makewill install dependencies via composer and NPMmake composerwill install PHP dependencies via composermake npmwill install CSS/JS dependencies via NPMmake updatewill update the applicationmake clean-cachewill remove the content of the cache directorymake propelwill generate propel migrations (database and files)make runwill run development server on http://127.0.0.1:8080/
By default, composer, npm, git, mkdir and php binaries must be in your $PATH. You can override it by using these envars:
COMPOSERNPMGITMKDIRPHP
For example:
$ export COMPOSER=/path/to/composer
$ make composer