diff options
author | 2021-09-15 13:15:20 +0000 | |
---|---|---|
committer | 2021-09-15 13:15:20 +0000 | |
commit | 285993bc1cb5e4a1461e1c704b130d2a4e01a474 (patch) | |
tree | 841a9b4e548b0587c880e67e90c93f07ee824829 | |
parent | added double quotes to fix strings (diff) |
added vscode extensions
-rw-r--r-- | .gitpod.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitpod.yml b/.gitpod.yml index fcc425c5..0c07be67 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,7 +1,9 @@ tasks: - name: "Python Environment" before: "pyenv install 3.9.6 && pyenv global 3.9.6" - env: - PIP_USER: "false" - init: "pip install poetry" + init: "pip install poetry && export PIP_USER=false" command: "poetry install && poetry run pre-commit install" + +vscode: + extensions: + - "ms-python.python"
\ No newline at end of file |