We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8cbd1c8 + 526eaf2 commit 00233f9Copy full SHA for 00233f9
2 files changed
dev/start
@@ -11,6 +11,11 @@ function v5_development() {
11
docker exec -e CONJUR_AUTHN_API_KEY="$api_key" -it --detach-keys 'ctrl-\' $(docker-compose ps -q gem) bash
12
}
13
14
+# Set up VERSION file for local development
15
+if [ ! -f "../VERSION" ]; then
16
+ echo -n "0.0.dev" > ../VERSION
17
+fi
18
+
19
docker-compose pull
20
docker-compose build
21
test.sh
@@ -13,6 +13,10 @@ function finish {
trap finish EXIT
function main() {
22
if ! docker info >/dev/null 2>&1; then
0 commit comments