improve dev setup

This commit is contained in:
Felix Lohmeier 2022-03-25 22:38:00 +01:00
parent 6a15b6558c
commit 5d1cd632bd
1 changed files with 12 additions and 3 deletions

View File

@ -1,9 +1,18 @@
# https://gitpod.io/#https://github.com/opencultureconsulting/orcli
tasks:
- name: install bashly
init: gem install bashly
- name: install OpenRefine
- name: install bashly and OpenRefine
init: |
gem install --silent bashly
wget -q -O openrefine.tar.gz https://github.com/OpenRefine/OpenRefine/releases/download/3.5.2/openrefine-linux-3.5.2.tar.gz
tar --exclude 'licenses' --exclude 'LICENSE.txt' --exclude 'README.md' -xzf openrefine.tar.gz --strip 1
rm openrefine.tar.gz
ports:
- port: 3333
onOpen: notify
visibility: private
vscode:
extensions:
- timonwong.shellcheck
- foxundermoon.shell-format