Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #297 from opensafely-core/deprecate
Browse files Browse the repository at this point in the history
Deprecated
  • Loading branch information
bloodearnest authored Nov 7, 2024
2 parents 05e3914 + 3b3ddb7 commit 019bbea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# DEPRECATED

Viewing and releasing files now happens via https://github.com/opensafely-core/airlock

# release-hatch

This provides a small API to authenicate and serve medium-privacy files in TRE
Expand Down
12 changes: 6 additions & 6 deletions docker/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ build env="dev":
export GITREF=$(git rev-parse --short HEAD)

# build the thing
docker-compose build --pull {{ env }}
docker compose build --pull {{ env }}


# run tests in docker container
test: build
docker-compose run --rm test
docker compose run --rm test


# run dev server in docker container
serve: build
docker-compose up dev
docker compose up dev


# run command in dev container
run *args="bash": build
docker-compose run dev {{ args }}

docker compose run dev {{ args }}

# exec command in existing dev container
exec *args="bash": build
docker-compose exec dev {{ args }}
docker compose exec dev {{ args }}

0 comments on commit 019bbea

Please sign in to comment.