Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
gitpod.yml & makedocs.jl & open jupyter nb on start
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfliegner committed May 15, 2024
1 parent 2246d93 commit 6177520
Show file tree
Hide file tree
Showing 5 changed files with 554 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Manifest.toml
.envrc
12 changes: 8 additions & 4 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@

image:
file: .gitpod.Dockerfile
tasks:
- before: >
echo "PATH_add ~/julia/bin" > $GITPOD_REPO_ROOT/.envrc
&& echo 'export SEARCHLIGHT_USERNAME="gitpod"' >> $$GITPOD_REPO_ROOT/.envrc
&& direnv allow $$GITPOD_REPO_ROOT
&& cd $GITPOD_REPO_ROOT
- init: >
cd ~ && curl -L https://storage.googleapis.com/julialang2/bin/linux/x64/$JULIA_MINOR_VERSION/julia-$JULIA_BUGFIX_VERSION-linux-x86_64.tar.gz
| tar -xzf - && mv julia-$JULIA_BUGFIX_VERSION julia
&& echo "PATH_add ~/julia/bin" > /workspace/.envrc
&& echo 'export SEARCHLIGHT_USERNAME="gitpod"' >> /workspace/.envrc
&& direnv allow /workspace
- command: julia -e 'include("init.jl")'
- command: python3 -m http.server 8080 -d docs/build
- command: python3 -m http.server 8080 -d docs/build
- command: gp open bitemporal_testcase.ipynb
Loading

0 comments on commit 6177520

Please sign in to comment.