diff --git a/Makefile b/Makefile index 9d1a107a7..68738d9ff 100644 --- a/Makefile +++ b/Makefile @@ -51,16 +51,12 @@ setup: .env ## | Initialize services. .PHONY: run run: .env .docker-build ## | Run the web app and services. - # NOTE(willkg): We tag all the backing services with --no-attach here to - # prevent them from spamming stdout + # NOTE(willkg): We tag all the services with --attach here to + # prevent dependencies from spamming stdout ${DC} up \ - --no-attach db \ - --no-attach statsd \ - --no-attach gcs-emulator \ - --no-attach redis-cache \ - --no-attach localstack \ - --no-attach oidcprovider \ - --no-attach statsd \ + --attach web \ + --attach frontend \ + --attach fakesentry \ web frontend fakesentry .PHONY: devcontainerbuild