diff options
Diffstat (limited to '.gitpod.yml')
-rw-r--r-- | .gitpod.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..2028683 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,13 @@ +image: gitpod/workspace-python-3.11 +tasks: + - name: sqlglot + init: | + python -m venv .venv + source .venv/bin/activate + make install-dev + + command: | + clear + source .venv/bin/activate + + |