diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 20:07:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-03 20:07:58 +0000 |
commit | fc2b129d31cbb474bbebfa0baa8537238f6332ed (patch) | |
tree | 5c6055c1be787787ae2d13b144f280740e235f79 /.gitpod.yml | |
parent | Adding upstream version 24.0.0. (diff) | |
download | sqlglot-fc2b129d31cbb474bbebfa0baa8537238f6332ed.tar.xz sqlglot-fc2b129d31cbb474bbebfa0baa8537238f6332ed.zip |
Adding upstream version 24.1.0.upstream/24.1.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 + + |