-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug-1945509: switch from make to just (#3116)
This switches from make to just. While doing that, this also fixes a couple of other things: 1. fixes running the Django webapp using `manage.py runserver` when in a local dev environment; I think I broke this in 2023 when I switched the container to use Honcho to run the web and disk manager processes 2. removes the test-ci and frontend-ci services and instead uses docker-compose.override.yml to add volume mounts Tecken should work like other crash ingestion services now.
- Loading branch information
Showing
16 changed files
with
181 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# define volumes in docker-compose.override.yml so that can be ignored in CI | ||
--- | ||
services: | ||
base: | ||
volumes: | ||
- .:/app | ||
web: | ||
volumes: | ||
- .:/app | ||
test: | ||
volumes: | ||
- .:/app | ||
frontend: | ||
volumes: | ||
- ./frontend:/app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.