Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.resonant.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_commit: v0.50.4
_commit: v0.50.5
_src_path: https://github.com/kitware-resonant/cookiecutter-resonant
core_app_name: core
include_example_code: false
Expand Down
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"features": {
"ghcr.io/devcontainers/features/git-lfs:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "24",
// Work around https://github.com/devcontainers/features/pull/1625
"pnpmVersion": "none"
},
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:management-alpine
image: rabbitmq:4.2-management-alpine
options: >-
--health-cmd "rabbitmq-diagnostics ping"
--health-start-period 30s
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.1.0
- name: Run tests
run: |
uv run --locked tox
Expand Down
3 changes: 3 additions & 0 deletions bats_ai/settings/heroku_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
# This needs to be set by the HTTPS terminating reverse proxy.
# Heroku and Render automatically set this.
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")

# Inform rate limiting that "X-Forwarded-For" should be trusted, as it's appended by Heroku.
ALLAUTH_TRUSTED_PROXY_COUNT = 1
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- postgres:/var/lib/postgresql

rabbitmq:
image: rabbitmq:management-alpine
image: rabbitmq:4.2-management-alpine
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "ping"]
start_period: 30s
Expand Down