Skip to content

Commit

Permalink
Merge pull request #16 from gonzaloplaza/feature/vendorsUpdate
Browse files Browse the repository at this point in the history
chore: vendors update, added simple Makefile
  • Loading branch information
Gonzalo Plaza authored May 4, 2021
2 parents bbff176 + a7a1336 commit 382ceb0
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 199 deletions.
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.PHONY: all start stop down rebuild test

current-dir := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))

# Docker
start:
@docker-compose up -d

stop:
@docker-compose stop

down:
@docker-compose down

rebuild:
@docker-compose build --parallel --pull --force-rm --no-cache
@make start

# Composer
test:
@composer test
Loading

0 comments on commit 382ceb0

Please sign in to comment.