-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (45 loc) · 916 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.PHONY: up
up:
@docker-compose up -d
symfony server:start -d
.PHONY: up-dev
up-dev: up npm-dev
.PHONY: up-watch
up-watch: up npm-watch
.PHONY: up-full
up-full: up npm-watch mail
.PHONY: down
down:
@symfony server:stop
@docker-compose down
.PHONY: mail
mail:
@maildev --hide-extensions STARTTLS
.PHONY: npm-install
npm-install:
@npm install
.PHONY: npm-update
npm-update:
@npm update
.PHONY: npm-watch
npm-watch:
@npm run watch
.PHONY: npm-dev
npm-dev:
@npm run dev
.PHONY: analyze
analyze:
@codeclimate analyze assets src
.PHONY: composer-install
composer-install:
@composer install
.PHONY: composer-update
composer-update:
@composer update
.PHONY: js-dump-routes
js-dump-route:
@bin/console fos:js-routing:dump --format=json --target=public/js/fos_js_routes.json
.PHONY: deps-install
deps-install: composer-install npm-install
.PHONY: deps-update
deps-update: composer-update npm-update