Skip to content

Commit

Permalink
Rename bot to app.
Browse files Browse the repository at this point in the history
  • Loading branch information
adunkman committed Aug 29, 2021
1 parent 6aa7af1 commit 5a1a908
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ start: ## Runs the full application stack locally

.PHONY: test
test: ## Run automated tests
@docker-compose run bot test
@docker-compose run app test

.PHONY: test-watch
test-watch: ## Run automated tests and re-run tests automatically on changed files
@docker-compose run bot test --watchAll
@docker-compose run app test --watchAll

.PHONY: sh-bot
sh-bot: ## Open a shell in the bot docker image
@docker-compose run --entrypoint sh bot
.PHONY: sh-app
sh-app: ## Open a shell in the app docker image
@docker-compose run --entrypoint sh app
@echo
@echo If you have just made changes to dependencies, remember to rebuild the
@echo docker image by running \\033[33mmake rebuild\\033[0m or the changes won’t take effect.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:
bot:
app:
build: ./
volumes:
- ./:/app
Expand Down

0 comments on commit 5a1a908

Please sign in to comment.