From b6357337895ee313996e36da95bcc17d94705d85 Mon Sep 17 00:00:00 2001
From: Joseph Tran <joseph.tran@inrae.fr>
Date: Mon, 25 Mar 2024 23:12:38 +0100
Subject: [PATCH 1/5] Create .gitkeep

---
 .binder/.gitkeep | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 .binder/.gitkeep

diff --git a/.binder/.gitkeep b/.binder/.gitkeep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/.binder/.gitkeep
@@ -0,0 +1 @@
+
-- 
GitLab


From 6425bd6ea3657fbf8633c9be8691067f92b5a2e3 Mon Sep 17 00:00:00 2001
From: Joseph Tran <joseph.tran@inrae.fr>
Date: Mon, 25 Mar 2024 22:26:56 +0000
Subject: [PATCH 2/5] move binder configuration files into .binder folder and
 update badge

---
 install.R => .binder/install.R | 0
 .binder/runtime.txt            | 1 +
 README.md                      | 2 +-
 runtime.txt                    | 1 -
 4 files changed, 2 insertions(+), 2 deletions(-)
 rename install.R => .binder/install.R (100%)
 create mode 100644 .binder/runtime.txt
 delete mode 100644 runtime.txt

diff --git a/install.R b/.binder/install.R
similarity index 100%
rename from install.R
rename to .binder/install.R
diff --git a/.binder/runtime.txt b/.binder/runtime.txt
new file mode 100644
index 0000000..587afb1
--- /dev/null
+++ b/.binder/runtime.txt
@@ -0,0 +1 @@
+r-2020-06-26
\ No newline at end of file
diff --git a/README.md b/README.md
index 97b0d56..ed6de67 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,6 @@ You need to follow some extra-steps:
 
 Click on the following badge to run the tutorial on binder, it will open a new tab in your browser and you can start the tutorial from there:
   
-[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/main?urlpath=rstudio)
+[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/binder_test)
   
 Be patient, it could take a while to deploy the tutorial code on mybinder.org.  
diff --git a/runtime.txt b/runtime.txt
deleted file mode 100644
index 12827bc..0000000
--- a/runtime.txt
+++ /dev/null
@@ -1 +0,0 @@
-r-4.2.2-2022-11-01
\ No newline at end of file
-- 
GitLab


From c881b12b23e7d13dd887e067b58e97a64efb3e94 Mon Sep 17 00:00:00 2001
From: Joseph Tran <joseph.tran@inrae.fr>
Date: Mon, 25 Mar 2024 22:41:19 +0000
Subject: [PATCH 3/5] update urlpath with shiny in binder badge

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index ed6de67..845c38e 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,6 @@ You need to follow some extra-steps:
 
 Click on the following badge to run the tutorial on binder, it will open a new tab in your browser and you can start the tutorial from there:
   
-[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/binder_test)
+[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/binder_test?urlpath=shiny/)
   
 Be patient, it could take a while to deploy the tutorial code on mybinder.org.  
-- 
GitLab


From de5f7b6fa172bcde86dfc88ca6386f7551b1bf00 Mon Sep 17 00:00:00 2001
From: Joseph Tran <joseph.tran@inrae.fr>
Date: Mon, 25 Mar 2024 22:47:37 +0000
Subject: [PATCH 4/5] fall back to binder configuration files at the root, and
 move shiny tutorial into its own folder and update badge url

---
 .binder/.gitkeep                                        | 1 -
 README.md                                               | 2 +-
 .binder/install.R => install.R                          | 0
 .binder/runtime.txt => runtime.txt                      | 0
 shiny_tutorial.Rmd => shiny_tutorial/shiny_tutorial.Rmd | 0
 5 files changed, 1 insertion(+), 2 deletions(-)
 delete mode 100644 .binder/.gitkeep
 rename .binder/install.R => install.R (100%)
 rename .binder/runtime.txt => runtime.txt (100%)
 rename shiny_tutorial.Rmd => shiny_tutorial/shiny_tutorial.Rmd (100%)

diff --git a/.binder/.gitkeep b/.binder/.gitkeep
deleted file mode 100644
index 8b13789..0000000
--- a/.binder/.gitkeep
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/README.md b/README.md
index 845c38e..3fd6909 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,6 @@ You need to follow some extra-steps:
 
 Click on the following badge to run the tutorial on binder, it will open a new tab in your browser and you can start the tutorial from there:
   
-[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/binder_test?urlpath=shiny/)
+[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jos4uke/shiny_tutorial.git/binder_test?urlpath=shiny/shiny_tutorial/)
   
 Be patient, it could take a while to deploy the tutorial code on mybinder.org.  
diff --git a/.binder/install.R b/install.R
similarity index 100%
rename from .binder/install.R
rename to install.R
diff --git a/.binder/runtime.txt b/runtime.txt
similarity index 100%
rename from .binder/runtime.txt
rename to runtime.txt
diff --git a/shiny_tutorial.Rmd b/shiny_tutorial/shiny_tutorial.Rmd
similarity index 100%
rename from shiny_tutorial.Rmd
rename to shiny_tutorial/shiny_tutorial.Rmd
-- 
GitLab


From 5fe90acb2ad9d5c95a95dc0bce79aaba915aea29 Mon Sep 17 00:00:00 2001
From: Joseph Tran <joseph.tran@inrae.fr>
Date: Mon, 25 Mar 2024 22:53:08 +0000
Subject: [PATCH 5/5] fall back to r version 4.2.2

---
 runtime.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime.txt b/runtime.txt
index 587afb1..12827bc 100644
--- a/runtime.txt
+++ b/runtime.txt
@@ -1 +1 @@
-r-2020-06-26
\ No newline at end of file
+r-4.2.2-2022-11-01
\ No newline at end of file
-- 
GitLab