orcli/.gitpod.yml

23 lines
754 B
YAML
Raw Normal View History

2022-03-25 11:55:57 +01:00
# https://gitpod.io/#https://github.com/opencultureconsulting/orcli
tasks:
2022-03-25 22:38:00 +01:00
- name: install bashly and OpenRefine
2022-04-12 17:56:22 +02:00
before: gem install --silent bashly
2022-03-25 11:55:57 +01:00
init: |
2022-10-25 11:34:54 +02:00
wget -q -O openrefine.tar.gz "https://oss.sonatype.org/service/local/artifact/maven/content?r=releases&g=org.openrefine&a=openrefine&v=3.6.2&c=linux&p=tar.gz"
tar --exclude 'licenses' --exclude 'LICENSE.txt' --exclude 'licenses.xml' --exclude 'README.md' -xzf openrefine.tar.gz --strip 1
2022-03-25 23:02:28 +01:00
rm openrefine.tar.gz
2022-04-20 09:36:03 +02:00
command: |
sudo ln -s "${PWD}/orcli" /usr/local/bin/
2022-10-07 11:02:05 +02:00
source <(orcli completions)
2022-04-20 09:36:03 +02:00
./refine
2022-03-25 22:38:00 +01:00
ports:
- port: 3333
onOpen: notify
visibility: private
vscode:
extensions:
- timonwong.shellcheck
- foxundermoon.shell-format