Skip to content

Commit

Permalink
Add Gitpod environment (#39)
Browse files Browse the repository at this point in the history
* Add Gitpod environment

* update gitignore
  • Loading branch information
mahesh-panchal authored Apr 17, 2024
1 parent 8d69d06 commit 297df66
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Quarto files
/.quarto/
_book/
_site/
_site/

# Nextflow files
.nextflow*
work/
results/

# Pixi files
.pixi

# Misc
data/
17 changes: 17 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
image: nfcore/gitpod:latest

tasks:
- name: Update Nextflow
command: nextflow self-update
- name: Install Pixi
command: |
sudo chown gitpod -R /home/gitpod/
curl -fsSL https://pixi.sh/install.sh | bash
. /home/gitpod/.bash_profile
- name: Install Quarto
command: |
wget https://quarto.org/download/latest/quarto-linux-amd64.deb
# sudo apt-get install r-base r-base-dev
sudo dpkg -i quarto-linux-amd64.deb
rm quarto-linux-amd64.deb
quarto check all

0 comments on commit 297df66

Please sign in to comment.