Skip to content

Commit

Permalink
Updates for cleaner run of the cookiecutter template
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospri committed May 30, 2024
1 parent e43978e commit 73ac3f5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"postgres": "yes",
"docker": "yes",
"__postgres_port": "5433",
"__postgres_version": "11.5-alpine",
"__postgres_version": "15.6-alpine",
"__docker_namespace": "hypothesis",
"__docker_network": "lms_default",
"__github_url": "https://github.com/hypothesis/lms",
Expand Down
9 changes: 8 additions & 1 deletion .cookiecutter/includes/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ BDD_Tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11.5-alpine
image: postgres:15.6-alpine
ports:
- 5433:5432
env:
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Install Python
Expand Down
2 changes: 1 addition & 1 deletion .cookiecutter/includes/docker-compose/services.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rabbit:
image: rabbitmq:3.6-management-alpine
image: rabbitmq:3.12-management-alpine
ports:
- '127.0.0.1:5674:5672'
- '127.0.0.1:15674:15672'

0 comments on commit 73ac3f5

Please sign in to comment.