From 090e3cfa61e688d560283a6ab473aa89b1472ec8 Mon Sep 17 00:00:00 2001 From: Christopher Hopper Date: Thu, 16 Dec 2021 11:38:03 +1100 Subject: [PATCH 1/2] Use pygmy-go in ahoy fix-bay-token See #69 --- .ahoy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ahoy.yml b/.ahoy.yml index 34c0098..97f1679 100644 --- a/.ahoy.yml +++ b/.ahoy.yml @@ -113,14 +113,14 @@ commands: fix-bay-token: usage: Fix the bay token by re-importing. cmd: | - pygmy stop \ + pygmy-go down \ && sleep 1 \ - && pygmy start \ + && pygmy-go up \ && docker ps -a | grep Exit | cut -d ' ' -f 1 | xargs docker rm \ && docker-compose up -d --force \ - && pygmy stop \ + && pygmy-go down \ && sleep 1 \ - && pygmy start + && pygmy-go up link-package: usage: Link package from current repository root. From 857b52da509df8d233074563c86f7bec608e51c6 Mon Sep 17 00:00:00 2001 From: Christopher Hopper Date: Thu, 16 Dec 2021 11:56:49 +1100 Subject: [PATCH 2/2] Fix broken Pygmy link in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5711e48..e3597a9 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@ Tools used for development of Tide distribution and modules. ## Prerequisites 1. Make sure that you have latest versions of all required software installed: - [Docker](https://www.docker.com/) - - [Pygmy](https://docs.amazee.io/local_docker_development/pygmy.html) + - [Pygmy](https://github.com/fubarhouse/pygmy-go) - [Ahoy](https://github.com/ahoy-cli/ahoy) 2. Make sure that all local web development services are shut down (`apache/nginx`, `mysql`, `MAMP` etc). ## Local environment setup 3. `curl https://raw.githubusercontent.com/dpc-sdp/dev-tools/master/install | bash` -4. `pygmy up` +4. `pygmy-go up` 5. `ahoy build` ## Available `ahoy` commands