diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..b4d1e39 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,21 @@ +# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ +tasks: + - init: > + gp open README.md; + pip install -r "requirements.txt"; + command: > + gp open README.md; + pip install -r "requirements.txt"; +# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/ +ports: + - port: 9000-9099 + onOpen: ignore + +# Install necessary packages +image: + file: .gitpod.dockerfile + +vscode: + extensions: + - ms-toolsai.jupyter + - vscode.python