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.
1 parent 7c6f221 commit 8466525Copy full SHA for 8466525
.gitpod.yml
@@ -1,5 +1,6 @@
1
tasks:
2
- init: make install
3
+ command: make config
4
vscode:
5
extensions:
6
- ms-vscode-remote.remote-containers
makefile
@@ -1,4 +1,4 @@
-install: install_hatch
+install: install_gh_cli install_hatch
install_hatch: install_pipx
pipx install hatch
@@ -10,3 +10,13 @@ install_pipx: install_python_with_pyenv
10
install_python_with_pyenv:
11
pyenv install 3.10.7 && \
12
pyenv global 3.10.7
13
+
14
+install_gh_cli:
15
+ wget https://github.com/cli/cli/releases/download/v2.16.1/gh_2.16.1_linux_amd64.deb && \
16
+ sudo dpkg -i gh_2.16.1_linux_amd64.deb && \
17
+ rm gh_2.16.1_linux_amd64.deb
18
19
+config: config_gh_cli
20
21
+config_gh_cli:
22
+ gh auth login
0 commit comments