From 13053941b504f31b049b25e022268d7d6263f053 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 14:01:18 -0400 Subject: [PATCH 01/31] change PIPX_BIN_DIR --- .gitpod.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 4c34ecf..e609861 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,7 +4,8 @@ tasks: - name: install algokit init: > pip install pipx && - pipx install git+https://github.com/joe-p/algokit-cli.git@fb32942 && + export PIPX_BIN_DIR=/workspace + pipx install algokit && gp sync-done algokit-install && exit vscode: @@ -33,4 +34,4 @@ ports: - name: webpack port: 8080 visibility: public - onOpen: ignore \ No newline at end of file + onOpen: ignore From 0c3ffa4e20dfec020fbc78ea85d7f5b0cea29302 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 14:16:01 -0400 Subject: [PATCH 02/31] fixup export --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index e609861..751aa33 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,7 +4,7 @@ tasks: - name: install algokit init: > pip install pipx && - export PIPX_BIN_DIR=/workspace + export PIPX_BIN_DIR=/workspace && pipx install algokit && gp sync-done algokit-install && exit From 212dc1db5c1d05346d864f5a75e0dd848c8a0306 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 14:26:39 -0400 Subject: [PATCH 03/31] add .gitpod.Dockerfile --- .gitpod.Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..9a7298a --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,4 @@ +FROM gitpod/workspace-full +ENV PIPX_BIN_DIR=/workspace/.pipx/bin +ENV PATH=$PIPX_BIN_DIR:$PATH +ENV PIP_USER=yes From c3da42849a9c7a970ffbc68300619a0d5800df31 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 14:27:20 -0400 Subject: [PATCH 04/31] Update .gitpod.yml --- .gitpod.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 751aa33..c2d908f 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,7 +4,6 @@ tasks: - name: install algokit init: > pip install pipx && - export PIPX_BIN_DIR=/workspace && pipx install algokit && gp sync-done algokit-install && exit From 8a9a30ea0e6d93df820bfbd1770d9e0aa9a89efa Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 15:08:21 -0400 Subject: [PATCH 05/31] add pipx install to dockerfile --- .gitpod.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 9a7298a..14524ad 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -2,3 +2,4 @@ FROM gitpod/workspace-full ENV PIPX_BIN_DIR=/workspace/.pipx/bin ENV PATH=$PIPX_BIN_DIR:$PATH ENV PIP_USER=yes +RUN pipx install algokit From e9a79c4cb8dd40e96e90d6a04089471b36d6afb7 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 15:10:56 -0400 Subject: [PATCH 06/31] remove algokit install from gitpod.yml --- .gitpod.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index c2d908f..d71b271 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,12 +1,6 @@ tasks: - name: algokit localnet - command: gp sync-await algokit-install && algokit localnet start && exit - - name: install algokit - init: > - pip install pipx && - pipx install algokit && - gp sync-done algokit-install && - exit + command: algokit localnet start && exit vscode: extensions: - ms-python.python From 18c0dd954fd35bdb515a6dd1053b6efe88a1cf54 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 15:12:36 -0400 Subject: [PATCH 07/31] add install pipx to dockerfile --- .gitpod.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 14524ad..bf99878 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -2,4 +2,5 @@ FROM gitpod/workspace-full ENV PIPX_BIN_DIR=/workspace/.pipx/bin ENV PATH=$PIPX_BIN_DIR:$PATH ENV PIP_USER=yes +RUN python -m pip install pipx RUN pipx install algokit From 925ebff95f3de62d96e94809aa6e7dfebe8dee00 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 16:33:02 -0400 Subject: [PATCH 08/31] Delete .gitpod.Dockerfile --- .gitpod.Dockerfile | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index bf99878..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM gitpod/workspace-full -ENV PIPX_BIN_DIR=/workspace/.pipx/bin -ENV PATH=$PIPX_BIN_DIR:$PATH -ENV PIP_USER=yes -RUN python -m pip install pipx -RUN pipx install algokit From 92dc50d4b039cbef2c1a55d259102b9e3503227b Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 17:42:25 -0400 Subject: [PATCH 09/31] add image: gitpod/workspace-full:2023-05-08-21-16-55 --- .gitpod.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.yml b/.gitpod.yml index d71b271..430669e 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,3 +1,4 @@ +image: gitpod/workspace-full:2023-05-08-21-16-55 tasks: - name: algokit localnet command: algokit localnet start && exit From 7a143fb01e64b17a24cfde7697d48d8ab6bcfb26 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 17:43:38 -0400 Subject: [PATCH 10/31] add image: file: .gitpod.Dockerfile --- .gitpod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 430669e..5305e7a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,5 @@ -image: gitpod/workspace-full:2023-05-08-21-16-55 +image: + file: .gitpod.Dockerfile tasks: - name: algokit localnet command: algokit localnet start && exit From 735aad1598354f0565e7e07394bd737c6735915e Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 17:45:32 -0400 Subject: [PATCH 11/31] Create .gitpod.Dockerfile --- .gitpod.Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..7110769 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,5 @@ +# Install pipx +RUN pip install pipx + +# Install algokit +RUN pipx install algokit From 7fbecdc00044171a798ac32f35b95ec03a9a77f5 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 17:47:45 -0400 Subject: [PATCH 12/31] add pipx ensurepath --- .gitpod.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 7110769..57eed93 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,6 @@ # Install pipx RUN pip install pipx +RUN pipx ensurepath # Install algokit RUN pipx install algokit From c658aeae9ec779571d7477e460a653abe4209f11 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 18:05:39 -0400 Subject: [PATCH 13/31] modify pipx install --- .gitpod.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 57eed93..3e4ef70 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,5 @@ # Install pipx -RUN pip install pipx +RUN python -m pip install pipx RUN pipx ensurepath # Install algokit From d03f06bb17bb59ee0674dc5bc08037acaf42f615 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 18:07:58 -0400 Subject: [PATCH 14/31] Update .gitpod.Dockerfile --- .gitpod.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 3e4ef70..f8896a8 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,4 +1,5 @@ # Install pipx +RUN echo "WTF" RUN python -m pip install pipx RUN pipx ensurepath From e1f1b3fb6fbfc1e69723a27b1d8818269175de0a Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 18:09:48 -0400 Subject: [PATCH 15/31] Update .gitpod.Dockerfile --- .gitpod.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index f8896a8..3f149fe 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,5 @@ # Install pipx -RUN echo "WTF" +RUN echo $PATH RUN python -m pip install pipx RUN pipx ensurepath From 8271d6ea63c59bb101674b56b7550439a3465e2e Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 18:14:46 -0400 Subject: [PATCH 16/31] add 2023-05-08-21-16-55 --- .gitpod.Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 3f149fe..bb9ef88 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,6 +1,7 @@ +FROM gitpod/workspace-full:2023-05-08-21-16-55 + # Install pipx -RUN echo $PATH -RUN python -m pip install pipx +RUN pip install pipx RUN pipx ensurepath # Install algokit From c6e640a2bf3d4147293ce427ad758ff3ce129f88 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:30:51 -0400 Subject: [PATCH 17/31] initial commit --- .gitpod.Dockerfile | 8 -------- .gitpod.yml | 12 +++++++++--- 2 files changed, 9 insertions(+), 11 deletions(-) delete mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index bb9ef88..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM gitpod/workspace-full:2023-05-08-21-16-55 - -# Install pipx -RUN pip install pipx -RUN pipx ensurepath - -# Install algokit -RUN pipx install algokit diff --git a/.gitpod.yml b/.gitpod.yml index 5305e7a..f0bd8ad 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,8 +1,14 @@ -image: - file: .gitpod.Dockerfile tasks: + - name: install algokit + init: > + gp env PIPX_HOME=/workspace/ && + gp env PIPX_BIN_DIR=/usr/local/bin && + pip install pipx && + sudo PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && + /workspace/algokit localnet start && + exit - name: algokit localnet - command: algokit localnet start && exit + command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python From 6f7a74da4ccd09b9d96ad5ca9abade2a676eaab3 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:56:33 -0400 Subject: [PATCH 18/31] remove sudo --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index f0bd8ad..aeb698c 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -4,7 +4,7 @@ tasks: gp env PIPX_HOME=/workspace/ && gp env PIPX_BIN_DIR=/usr/local/bin && pip install pipx && - sudo PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && + PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && /workspace/algokit localnet start && exit - name: algokit localnet From f97e9232ba0731d604b61f1af790c14505e7e9bb Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 22:05:23 -0400 Subject: [PATCH 19/31] PIPX_BIN_DIR=$PIPX_HOME/bin --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index aeb698c..476680c 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,9 +2,9 @@ tasks: - name: install algokit init: > gp env PIPX_HOME=/workspace/ && - gp env PIPX_BIN_DIR=/usr/local/bin && + gp env PIPX_BIN_DIR=$PIPX_HOME/bin && pip install pipx && - PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && + PIPX_HOME=/workspace/ PIPX_BIN_DIR=$PIPX_HOME/bin pipx install algokit && /workspace/algokit localnet start && exit - name: algokit localnet From d5bcf3e0a55072583ed59ed65623c53a88b2be29 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Tue, 13 Jun 2023 08:15:09 -0400 Subject: [PATCH 20/31] create .gitpod.Dockerfile --- .gitpod.Dockerfile | 8 ++++++++ .gitpod.yml | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 .gitpod.Dockerfile diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..231a847 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,8 @@ +FROM gitpod/workspace-full:2023-05-08-21-16-55 + +# Install pipx +RUN pip install pipx +RUN pipx ensurepath + +# Install algokit +RUN pipx install algokit \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml index 476680c..42b9edd 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,3 +1,5 @@ +image: + file: .gitpod.Dockerfile tasks: - name: install algokit init: > From 97964ebbab0579a996021dfb9e98c021a0ffbcca Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:33:09 -0400 Subject: [PATCH 21/31] Gitpod (#37) * change PIPX_BIN_DIR * fixup export * add .gitpod.Dockerfile * Update .gitpod.yml * add pipx install to dockerfile * remove algokit install from gitpod.yml * add install pipx to dockerfile * Delete .gitpod.Dockerfile * add image: gitpod/workspace-full:2023-05-08-21-16-55 * add image: file: .gitpod.Dockerfile * Create .gitpod.Dockerfile * add pipx ensurepath * modify pipx install * Update .gitpod.Dockerfile * Update .gitpod.Dockerfile * add 2023-05-08-21-16-55 * initial commit --- .gitpod.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 42b9edd..65f6259 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -3,14 +3,10 @@ image: tasks: - name: install algokit init: > - gp env PIPX_HOME=/workspace/ && - gp env PIPX_BIN_DIR=$PIPX_HOME/bin && pip install pipx && - PIPX_HOME=/workspace/ PIPX_BIN_DIR=$PIPX_HOME/bin pipx install algokit && + sudo PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && /workspace/algokit localnet start && exit - - name: algokit localnet - command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python @@ -38,3 +34,4 @@ ports: port: 8080 visibility: public onOpen: ignore + From e712aef61a339651e7dca0de586b128e8b6863c0 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:49:09 -0400 Subject: [PATCH 22/31] revert gitpod update --- .gitpod.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 65f6259..d562860 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,11 +1,13 @@ image: file: .gitpod.Dockerfile tasks: + - name: algokit localnet + command: gp sync-await algokit-install && algokit localnet start && exit - name: install algokit init: > pip install pipx && - sudo PIPX_HOME=/workspace/ PIPX_BIN_DIR=/usr/local/bin pipx install algokit && - /workspace/algokit localnet start && + pipx install git+https://github.com/joe-p/algokit-cli.git@fb32942 && + gp sync-done algokit-install && exit vscode: extensions: From 41b7b1619161c4deed22fc7d42ed3e50990f1347 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 14:01:18 -0400 Subject: [PATCH 23/31] change PIPX_BIN_DIR --- .gitpod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index d562860..c3f4f13 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -6,7 +6,8 @@ tasks: - name: install algokit init: > pip install pipx && - pipx install git+https://github.com/joe-p/algokit-cli.git@fb32942 && + export PIPX_BIN_DIR=/workspace + pipx install algokit && gp sync-done algokit-install && exit vscode: From 2d05920c69a8f4893b3552a3a890ebf81af1be99 Mon Sep 17 00:00:00 2001 From: Evert Diaz Date: Tue, 13 Jun 2023 00:00:02 -0500 Subject: [PATCH 24/31] Deleted space on spanish readme.md --- beginner-es/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner-es/README.md b/beginner-es/README.md index 61714d9..fea14c6 100644 --- a/beginner-es/README.md +++ b/beginner-es/README.md @@ -17,4 +17,4 @@ Si deseas configurar todo tu entorno, puedes encontrar un video completo en espa - Sesión 1: Transacciones con el SDK - [https://youtu.be/IMHmMSN-coo](https://youtu.be/IMHmMSN-coo) - Sesión 2: Smart Contracts con Beaker y PyTEAL - [https://youtu.be/YRsllJiSR1c](https://youtu.be/YRsllJiSR1c) - Sesión 3: Creación de smart contract de subasta - [https://youtu.be/sNQUFVjOx1E](https://youtu.be/sNQUFVjOx1E) -- Sesión 4: Creación de cliente web - [https://youtu.be/JdZ9_EwzPok] (https://youtu.be/JdZ9_EwzPok) \ No newline at end of file +- Sesión 4: Creación de cliente web - [https://youtu.be/JdZ9_EwzPok](https://youtu.be/JdZ9_EwzPok) From d2524af411ad75a50b335c744e30c351e51a73d2 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Tue, 13 Jun 2023 08:27:35 -0400 Subject: [PATCH 25/31] algokit localnet start --- .gitpod.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index c3f4f13..0fbdbb3 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,14 +2,7 @@ image: file: .gitpod.Dockerfile tasks: - name: algokit localnet - command: gp sync-await algokit-install && algokit localnet start && exit - - name: install algokit - init: > - pip install pipx && - export PIPX_BIN_DIR=/workspace - pipx install algokit && - gp sync-done algokit-install && - exit + command: algokit localnet start && exit vscode: extensions: - ms-python.python From 26510aa3969316598d1776b97e9f7d8690d2779c Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Thu, 15 Jun 2023 08:19:00 -0400 Subject: [PATCH 26/31] add upgrade algokit --- .gitpod.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 0fbdbb3..6d89983 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,8 +1,17 @@ image: file: .gitpod.Dockerfile tasks: - - name: algokit localnet - command: algokit localnet start && exit + - name: start localnet + command: > + gp sync-await algokit-upgrade && + algokit localnet start && + exit +tasks: + - name: upgrade algokit + command: > + pipx upgrade algokit && + gp sync-done algokit-upgrade && + exit vscode: extensions: - ms-python.python From e87a582a5be9c191742abc13118cfcc118a876a0 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Thu, 15 Jun 2023 08:25:11 -0400 Subject: [PATCH 27/31] fixup tasks --- .gitpod.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 6d89983..49de911 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -6,7 +6,6 @@ tasks: gp sync-await algokit-upgrade && algokit localnet start && exit -tasks: - name: upgrade algokit command: > pipx upgrade algokit && From 13f31fcf30056bb77f021b008f93069ad0c2c176 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:33:09 -0400 Subject: [PATCH 28/31] Gitpod (#37) * change PIPX_BIN_DIR * fixup export * add .gitpod.Dockerfile * Update .gitpod.yml * add pipx install to dockerfile * remove algokit install from gitpod.yml * add install pipx to dockerfile * Delete .gitpod.Dockerfile * add image: gitpod/workspace-full:2023-05-08-21-16-55 * add image: file: .gitpod.Dockerfile * Create .gitpod.Dockerfile * add pipx ensurepath * modify pipx install * Update .gitpod.Dockerfile * Update .gitpod.Dockerfile * add 2023-05-08-21-16-55 * initial commit --- .gitpod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 49de911..bd73aec 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -11,6 +11,8 @@ tasks: pipx upgrade algokit && gp sync-done algokit-upgrade && exit + - name: algokit localnet + command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python @@ -38,4 +40,3 @@ ports: port: 8080 visibility: public onOpen: ignore - From 4fa4746f665cb5336c44bd321d86ec9c46ad02f9 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:49:09 -0400 Subject: [PATCH 29/31] revert gitpod update --- .gitpod.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index bd73aec..083f7ac 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -11,8 +11,6 @@ tasks: pipx upgrade algokit && gp sync-done algokit-upgrade && exit - - name: algokit localnet - command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python @@ -40,3 +38,4 @@ ports: port: 8080 visibility: public onOpen: ignore + \ No newline at end of file From 9890af50b45e9853ac4fdf18aa67bf74d90d8b04 Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:33:09 -0400 Subject: [PATCH 30/31] Gitpod (#37) * change PIPX_BIN_DIR * fixup export * add .gitpod.Dockerfile * Update .gitpod.yml * add pipx install to dockerfile * remove algokit install from gitpod.yml * add install pipx to dockerfile * Delete .gitpod.Dockerfile * add image: gitpod/workspace-full:2023-05-08-21-16-55 * add image: file: .gitpod.Dockerfile * Create .gitpod.Dockerfile * add pipx ensurepath * modify pipx install * Update .gitpod.Dockerfile * Update .gitpod.Dockerfile * add 2023-05-08-21-16-55 * initial commit --- .gitpod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 083f7ac..bd73aec 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -11,6 +11,8 @@ tasks: pipx upgrade algokit && gp sync-done algokit-upgrade && exit + - name: algokit localnet + command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python @@ -38,4 +40,3 @@ ports: port: 8080 visibility: public onOpen: ignore - \ No newline at end of file From 2ae15f3f6bfb19fdf0861ed5c398735c623daf0a Mon Sep 17 00:00:00 2001 From: "Ryan R. Fox" Date: Mon, 12 Jun 2023 21:49:09 -0400 Subject: [PATCH 31/31] revert gitpod update --- .gitpod.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index bd73aec..96066da 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -11,8 +11,6 @@ tasks: pipx upgrade algokit && gp sync-done algokit-upgrade && exit - - name: algokit localnet - command: /workspace/algokit localnet start; exit vscode: extensions: - ms-python.python