setup dev environment

This commit is contained in:
Felix Lohmeier 2022-03-25 11:55:57 +01:00
parent 7f93410bba
commit 6a15b6558c
2 changed files with 13 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
refine
refine.ini
server
webapp

9
.gitpod.yml Normal file
View File

@ -0,0 +1,9 @@
# https://gitpod.io/#https://github.com/opencultureconsulting/orcli
tasks:
- name: install bashly
init: gem install bashly
- name: install OpenRefine
init: |
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