-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.cfg
53 lines (43 loc) · 1.22 KB
/
config.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"appname": "BirdMApp",
/* package dependencies for the application are stored in
"app/packages.txt"
a text file that lists R package requirements.
Packages are installed (to app/library) if not available.
Options:
- cran: <string>
URL of preferred CRAN mirror for package installation
*/
"packages": {
"cran": "http://cran.rstudio.com"
},
/* options for R executable
home: "dist\\App\\R-Portable\\bin"
Path to <R_HOME>/bin - the R environment to use to run the app.
Allows for using a system installed R, making the app deployment lighter weight.
Defaults to:
"dist\\R-Portable\\App\\R-Portable\\bin\\"
To use a system installed R set to something like:
"C:\\Program Files\\R\\R-4.0.2\\bin"
command: <string>
Name of the specific R interpreter executable to use.
Defaults to:
"Rscript.exe"
options: <string>
Options to pass to the R interpreter executable.
Defaults to:
"--vanilla"
*/
"r_exec": {
"home": "dist\\App\\R-Portable\\bin"
},
/*
- use_userprofile: true
Keeps logs with the application.
Otherwise, the log file is written to %USERPROFILE%/.<appname>/
*/
"logging": {
"use_userprofile": false,
"filename": "log.log"
}
}