Wykres commitów

91 Commity (965cb15b990980e165c984ed72208159585590d0)

Autor SHA1 Wiadomość Data
Tim Head 4be9fe0731 SUpport R runtime strings that don't specify a version 2019-09-06 12:12:06 +02:00
Tim Head ef9d27ac2c Add support for innstalling different versions of R 2019-09-03 07:20:38 +02:00
GeorgianaElena 5983ded5bb Upgrade IRKernel version to 1.0.2 2019-08-26 17:53:53 +03:00
Tim Head 01c785f6fc Call parent preassemble scripts methods
Without this we don't collect the files that other build packs need to
copy them over to the container in the pre-assemble stage.
2019-07-23 07:33:06 +02:00
Tim Head 66227f85b4 Detect failure of pre-assembly in R buildpack
If the pre-assembly step succeeds we do not re-run it after copying the
repository contents.
2019-07-06 16:21:29 +02:00
Tim Head 0eae8dc0c4 Install R packages before copying repo contents 2019-06-28 22:09:32 +02:00
Tim Head 41da67490f Move more R config to the build phase 2019-06-25 13:17:56 +02:00
Tim Head 8b004e06dc Apply auto formatting
Apologies to anyone finding this commit via git blame or log

run the autoformatting by

    pre-commit run --all-files
2019-06-03 21:37:25 +02:00
Joseph Hamman 3941a92a7d fix missing () 2019-04-27 17:16:14 -07:00
Joseph Hamman c230c70f4e support for .binder directory 2019-04-27 17:01:20 -07:00
Tim Head bfa26bdf42 Fix up the server proxy package to get websockets back 2019-04-15 22:58:38 +02:00
yuvipanda 71031688dd Bump nbrsessionproxy version
For https://github.com/jupyterhub/mybinder.org-deploy/issues/865
2018-12-10 09:52:16 -08:00
nuest 68194a08a2 reformat some long lines 2018-11-09 07:46:31 +01:00
Tim Head 0ccca4983a
Update docs in buildpacks/r.py
Co-Authored-By: nuest <daniel.nuest@wwu.de>
2018-11-07 18:52:23 +01:00
nuest 9c81c3ed19 rename stencila_manifest_contexts to stencila_contexts
also remove dev comment
2018-10-30 16:25:40 +01:00
nuest c843e25f16 simplify test for contexts (is now by default an empty list) 2018-10-30 16:24:43 +01:00
nuest 12b4457437 restructure R buildpack docs 2018-10-30 16:03:38 +01:00
nuest d6dc570a14 continue Stencila detection if /binder dir is present, improve 2018-10-30 16:02:40 +01:00
nuest da41a90e04 update versions of stencila/r and stencila/py 2018-10-30 10:33:18 +01:00
nuest 3a479b6dee install R for Stencila from R buildpack 2018-10-30 10:32:42 +01:00
Bastian Greshake Tzovaras 1662d7ea6e remove cruft in config_files work & simplify code 2018-09-25 10:53:46 +02:00
Bastian Greshake Tzovaras 1f5469feb5
use getwd() to find path instead of "." 2018-09-23 22:15:43 +03:00
Bastian Greshake Tzovaras 834d74bbe1 build from DESCRIPTION w/o runtime.txt 2018-09-20 20:58:45 +03:00
Bastian Greshake Tzovaras cba81a73f8 allow DESCRIPTION to reside in binder subfolder 2018-09-19 11:08:38 +03:00
Bastian Greshake Tzovaras 56ca910a40 fix R DESCRIPTION installation 2018-09-18 16:10:12 +03:00
Bastian Greshake Tzovaras e8593d6bdd first try for R DESCRIPTION 2018-09-17 13:18:33 +02:00
Min RK cce1a47b09 separate get_build_env from get_env
so that runtime environment variables don’t trigger rebuild
2018-07-20 10:23:53 -07:00
Tim Head c688b70696 Fix parentheses in the build scripts for R buildpack 2018-05-25 08:14:14 +02:00
ryanlovett f90758057a Update comment. 2018-05-24 09:50:19 -07:00
ryanlovett 60dc622b31 Merge branch 'master' of github.com:jupyterhub/repo2docker 2018-05-24 09:49:05 -07:00
ryanlovett 4a6bbae7da Install shiny library. 2018-05-24 09:48:17 -07:00
ryanlovett 6deda3cd7a Create shiny-server output directories. 2018-05-23 11:13:11 -07:00
ryanlovett 106087cedb Install shiny-server. 2018-05-23 10:34:05 -07:00
Min RK 3092365890 nbrsessionproxy to 0.7
for shiny support!
2018-05-23 15:52:24 +02:00
Tim Head ed717955b1 Fix detecting dependency files in binder/ subidr 2018-03-15 16:22:01 +01:00
Yuvi Panda c400c41a7a
Revert "Add shiny-server." 2018-03-13 13:13:03 -07:00
ryanlovett ef330192ab Configure shiny-server.
This assumes apps are in ~/ShinyApps/. For now this can be seeded by
postBuild, but a better convention is to specify remote app locations in
something like a shinyapps.txt file.
2018-02-13 17:56:42 -08:00
yuvipanda 957acbcd2b Fix curl commandline parameters 2018-02-02 17:40:18 -08:00
yuvipanda 39d3e6a8f7 Add more docstrings in R BuildPack
- Version-pin the devtools package installation independent of
  the current version
- Make sure get_build_scripts is independent of contents of
  current repository
2018-02-02 17:38:36 -08:00
yuvipanda 25611f0230 Fix venv test failure caused by r buildpack addition 2018-02-02 09:37:56 -08:00
yuvipanda e2099dbc97 Add basic R + IRKernel + RStudio support
This sets up R + RStudio + IRKernel for a repository that contains:

 1. A `runtime.txt` file with the text:

	r-<year>-<month>-<date>

	Where 'year', 'month' and 'date' refer to a specific
	date snapshot of https://mran.microsoft.com/timemachine
	from which libraries are to be installed.

 2. An optional `install.R` file that will be executed at build time,
	and can be used for installing packages from both MRAN and GitHub.

It currently sets up R from the ubuntu repository being used. This
is unideal, and we should investigate other solutions!

Fixes #24
2018-02-02 09:25:19 -08:00