Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Snakemake-Tutorial",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},
"postCreateCommand": "bash setup.bash"
}
6 changes: 6 additions & 0 deletions .devcontainer/setup.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
rm -f Dockerfile .gitpod.yml && rm -rf .github
echo -e "# Snakemake-Tutorial\n\nYour gitpod workspace for the snakemake-tutorial has been initialized. Now you can start with the [basic tutorial](https://snakemake.readthedocs.io/en/stable/tutorial/basics.html)." > README.md
echo \"*\" > .gitignore
conda init
source ~/.bashrc
echo 'conda activate snakemake-tutorial' >> ~/.bashrc"