Skip to content

Commit abdcab7

Browse files
authored
Merge pull request #474 from lbedner/v0.5.4-rc2
v0.5.4-rc2
2 parents ab40c23 + 8679cc7 commit abdcab7

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ Test upgrade paths using TestPyPI before publishing to PyPI:
7575
uvx --index-url https://test.pypi.org/simple/ \
7676
--extra-index-url https://pypi.org/simple/ \
7777
--index-strategy unsafe-best-match \
78-
aegis-stack@0.5.2 init test-upgrade-project
78+
aegis-stack@0.5.3 init test-upgrade-project --no-interactive -y
7979

8080
# 2. Install new RC version and test update
8181
cd test-upgrade-project
8282
uvx --index-url https://test.pypi.org/simple/ \
8383
--extra-index-url https://pypi.org/simple/ \
8484
--index-strategy unsafe-best-match \
85-
aegis-stack@0.5.3 update
85+
aegis-stack@0.5.4rc1 update -y
8686
```
8787

8888
**Key uvx flags:**

aegis/templates/copier-aegis-project/{{ project_slug }}/docker-compose.yml.jinja

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,18 @@ services:
7272
<<: *app
7373
command:
7474
- scheduler
75-
{%- if include_redis %}
75+
{%- if include_redis or scheduler_backend == 'postgres' %}
7676
depends_on:
77+
{%- if include_redis %}
7778
redis:
7879
condition: service_healthy
80+
{%- endif %}
81+
{%- if scheduler_backend == 'postgres' %}
82+
webserver:
83+
condition: service_healthy
84+
{%- endif %}
85+
{%- endif %}
86+
{%- if include_redis %}
7987
environment:
8088
# Docker container marker and Redis connection for health checks
8189
- DOCKER_CONTAINER=1

0 commit comments

Comments
 (0)