phpvms/Makefile

130 lines
2.9 KiB
Makefile
Raw Normal View History

2017-06-08 07:43:25 +08:00
#
#
# Create the phpvms database if needed:
# docker exec phpvms /usr/bin/mysql -uroot -e 'CREATE DATABASE phpvms'
2017-12-14 07:03:59 +08:00
SHELL := /bin/bash
2018-01-07 08:20:37 +08:00
COMPOSER ?= $(shell which composer)
2017-06-08 07:43:25 +08:00
2017-12-14 07:03:59 +08:00
PKG_NAME := "/tmp"
2017-06-08 07:43:25 +08:00
CURR_PATH=$(shell pwd)
.PHONY: all
2017-12-08 04:27:57 +08:00
all: install
2017-06-08 07:43:25 +08:00
2017-12-08 04:27:57 +08:00
.PHONY: clean
clean:
@php artisan cache:clear
@php artisan route:clear
@php artisan config:clear
@php artisan view:clear
2018-01-05 04:58:01 +08:00
@find bootstrap/cache -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
@find storage/framework/cache/ -mindepth 1 -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
2018-01-05 05:22:32 +08:00
@find storage/framework/sessions/ -mindepth 1 -type f -not -name '.gitignore' -print0 | xargs -0 rm -rf
@find storage/framework/views/ -mindepth 1 -not -name '.gitignore' -print0 | xargs -0 rm -rf
2018-01-05 05:22:32 +08:00
@find storage/logs -mindepth 1 -not -name '.gitignore' -print0 | xargs -0 rm -rf
2017-06-09 02:28:26 +08:00
.PHONY: clean-routes
clean-routes:
@php artisan route:clear
.PHONY: clear
clear:
@php artisan cache:clear
@php artisan config:clear
@php artisan route:clear
@php artisan view:clear
2017-12-08 04:27:57 +08:00
.PHONY: build
build:
@php $(COMPOSER) install --no-interaction
2017-12-17 05:12:44 +08:00
# This is to build all the stylesheets, etc
.PHONY: build-assets
build-assets:
yarn run production
2017-12-17 05:12:44 +08:00
.PHONY: install
2017-12-08 04:27:57 +08:00
install: build
@php artisan database:create
@php artisan migrate --seed
@echo "Done!"
2017-06-09 09:02:52 +08:00
2017-12-07 07:31:20 +08:00
.PHONY: update
update: build
@php $(COMPOSER) dump-autoload
@php $(COMPOSER) update --no-interaction
@php artisan migrate --force
2017-12-07 07:31:20 +08:00
@echo "Done!"
.PHONY: reset
reset: clean
@php $(COMPOSER) dump-autoload
@make reload-db
.PHONY: reload-db
reload-db:
@php artisan database:create --reset
@php artisan migrate --seed
@echo "Done!"
2019-08-10 01:57:56 +08:00
@make clean
2017-06-09 09:02:52 +08:00
2017-07-05 02:09:44 +08:00
.PHONY: tests
2017-06-09 12:05:22 +08:00
tests: test
.PHONY: test
test: phpcs
#php artisan database:create --reset
vendor/bin/phpunit --debug --verbose
2017-06-09 12:00:30 +08:00
2019-05-13 01:08:31 +08:00
.PHONY: phpcs
phpcs:
2019-05-13 06:25:52 +08:00
@vendor/bin/php-cs-fixer fix --config=.php_cs -v --diff --dry-run
2019-05-13 01:08:31 +08:00
2019-06-19 07:16:29 +08:00
#.PHONY: phpstan
#phpstan:
# vendor/bin/phpstan analyse -c phpstan.neon -v --level 2 app
2018-04-23 21:46:28 +08:00
2017-12-26 09:23:58 +08:00
.PHONY: replay-acars
replay-acars:
2018-01-02 06:01:01 +08:00
#@php artisan phpvms:replay AAL10,AAL3113,BAW172,DAL988,FIN6,MSR986 --manual
@php artisan phpvms:replay ASH6028 --manual
2017-12-26 09:23:58 +08:00
2017-08-22 02:06:10 +08:00
.PHONY: sass-watch
2017-08-19 01:02:32 +08:00
sass-watch:
sass --watch public/assets/admin/sass/paper-dashboard.scss:public/assets/admin/css/paper-dashboard.css
.PHONY: schema
2017-06-09 02:54:12 +08:00
schema:
#php artisan infyom:scaffold Aircraft --fieldsFile=database/schema/aircraft.json
2017-06-09 09:02:52 +08:00
echo ""
2017-06-09 02:54:12 +08:00
2017-12-14 06:04:23 +08:00
.PHONY: deploy-package
deploy-package:
2017-12-14 07:10:43 +08:00
./.travis/deploy_script.sh
2017-12-14 06:04:23 +08:00
2017-12-15 11:34:11 +08:00
.PHONY: reset-installer
reset-installer:
2018-01-01 02:09:23 +08:00
@php artisan database:create --reset
@php artisan migrate:refresh --seed
2017-12-15 11:34:11 +08:00
.PHONY: docker
2017-06-08 07:43:25 +08:00
docker:
@mkdir -p $(CURR_PATH)/tmp/mysql
-docker rm -f phpvms
docker build -t phpvms .
docker run --name=phpvms \
-v $(CURR_PATH):/var/www/ \
-v $(CURR_PATH)/tmp/mysql:/var/lib/mysql \
-p 8080:80 \
phpvms
.PHONY: docker-clean
2017-06-08 07:43:25 +08:00
docker-clean:
-docker stop phpvms
-docker rm -rf phpvms
-rm core/local.config.php
-rm -rf tmp/mysql