raspisms/Makefile

37 lines
606 B
Makefile
Raw Normal View History

2020-02-18 04:32:53 +01:00
.PHONY: all install composer_install vendor migrate clean fix
2020-02-18 02:51:45 +01:00
INSTALL_DIR=$(DESTDIR)/opt/raspisms2
ENV=prod
all: install
2020-02-18 04:58:34 +01:00
vendor: raspisms/composer.phar raspisms/composer.json
cd raspisms && ./composer.phar self-update
cd raspisms && ./composer.phar install
2020-02-18 02:51:45 +01:00
2020-02-18 03:09:59 +01:00
2020-02-18 02:51:45 +01:00
migrate: vendor
2020-02-18 04:58:34 +01:00
cd raspisms && ./vendor/bin/phinx migrate --environment=$(ENV)
2020-02-18 02:51:45 +01:00
2020-02-18 03:09:59 +01:00
install: vendor migrate
2020-02-18 04:20:12 +01:00
chmod -R 750 .
2020-02-18 04:58:34 +01:00
install -m750 -d $(INSTALL_DIR)
cp -Tr raspisms $(INSTALL_DIR)
2020-02-18 04:20:12 +01:00
2020-02-18 03:47:18 +01:00
2020-02-18 02:51:45 +01:00
clean:
uninstall:
2020-02-18 03:57:26 +01:00
rm -rf $(INSTALL_DIR)
2020-02-18 03:09:59 +01:00
fix:
2020-02-18 04:58:34 +01:00
cd raspisms && ./tests/php-cs-fixer/run.php fix
cd raspisms && ./tests/phpstan/run.php analyse