-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
53 lines (40 loc) · 1.19 KB
/
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
SHELL := /bin/bash
default:
@echo "Make utility. Supports the following actions: "
@echo " up: Start the service containers"
@echo " down: Stop the service containers"
@echo " console: Remote console to the wordpress service container"
@echo " test: Run the unit tests"
@echo " format: Run the code beautifier"
@echo " wordpress: Setup wordpress and plugins"
@echo " deps: Install all the composer dependencies"
@echo " phpunit: Setup Wordpress as a testing environment for phpunit"
@echo " setup: Runs wordpress, composer, phpunit and sdk"
@echo " bundle: Builds the vendor in production mode and generates the distributable zip file (perfecty-push-notifications.zip)"
@echo " svnsync: Sync the current code with the SVN upstream repository"
@echo " svnpush: Creates a tag and push it to the SVN repository"
up:
@./bin/run.sh up
@./bin/run.sh phpunit
down:
@./bin/run.sh down
test:
@./bin/run.sh test
format:
@./bin/run.sh format
console:
@./bin/run.sh console
wordpress:
@./bin/run.sh wordpress
deps:
@./bin/run.sh deps
phpunit:
@./bin/run.sh phpunit
setup:
@./bin/run.sh setup
bundle:
@./bin/run.sh bundle
svnsync:
@./bin/run.sh svnsync
svnpush:
@./bin/run.sh svnpush