Skip to content

Commit

Permalink
Merge branch 'main' into dev-283
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelizimm committed Aug 6, 2024
2 parents 8b88b59 + 91e471e commit f68d2d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: run Posit Connect
run: |
docker-compose up --build -d
docker compose up --build -d
make dev
env:
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ RSC_API_KEYS=pins/tests/rsconnect_api_keys.json
dev: pins/tests/rsconnect_api_keys.json

dev-start:
docker-compose up -d
docker-compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
docker compose up -d
docker compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
# curl fails with error 52 without a short sleep....
sleep 5
curl -s --retry 10 --retry-connrefused http://localhost:3939

dev-stop:
docker-compose down
docker compose down
rm -f $(RSC_API_KEYS)

$(RSC_API_KEYS): dev-start
Expand Down

0 comments on commit f68d2d5

Please sign in to comment.