Fix Deezer covers

This commit is contained in:
Jonathan Cremin 2017-11-11 20:55:09 +00:00
parent 2c7e4f9dee
commit 2245428465
2 changed files with 12 additions and 12 deletions

View file

@ -11,6 +11,10 @@ help:
.PHONY: start
start: docker-compose-up watch-frontend ## Start containers and watch frontend
.PHONY: test
test: ## Run tests
docker-compose run --rm app yarn test
.PHONY: logs
logs: ## Tail the app and worker logs
docker-compose logs -f app worker
@ -23,7 +27,6 @@ migrate: ## Migrate database schema
watch-frontend: ## Build and watch frontend for changes
docker-compose run --rm app yarn watch-js
.PHONY: docker-compose-up
docker-compose-up: ## Start (and create) docker containers
docker-compose up -d