-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
103 lines (72 loc) · 3.38 KB
/
README.Rmd
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
output: github_document
---
```{r, eval = FALSE, include = FALSE}
# Print to markdown without distill templating
rmarkdown::render("README.Rmd", output_format = "github_document")
```
```{r setup, include = FALSE}
knitr::opts_chunk$set(
echo = FALSE,
message = FALSE
)
```
```{r libraries}
library(dplyr)
```
```{r vars}
# Get URL to repo
url <- desc::desc_get_urls()
# Get Depends, Imports and Suggests
packages <- desc::desc_get_deps()
```
[![minimal R version](https://img.shields.io/badge/R%3E%3D-3.6.0-6666ff.svg)](https://cran.r-project.org/)
[![Netlify Status](https://api.netlify.com/api/v1/badges/ddc6dfc3-1400-472c-920c-e17afae60709/deploy-status)](https://app.netlify.com/sites/youthful-kilby-c73432/deploys)
[![Travis Build Status](https://travis-ci.org/timtrice/hurricane_harvey_prelims.svg?branch=master)](https://travis-ci.org/timtrice/hurricane_harvey_prelims)
[![Docker Build Status](https://img.shields.io/docker/cloud/build/timtrice/hurricane_harvey_prelims.svg?style=popout)](https://cloud.docker.com/repository/docker/timtrice/hurricane_harvey_prelims)
[![Launch rstudio.cloud](https://img.shields.io/badge/launch-rstudio.cloud-yellowgreen.svg)](https://rstudio.cloud/project/398126)
[![Launch Rstudio Binder](http://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/timtrice/hurricane_harvey_prelims/master?urlpath=rstudio)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![gitter chat](https://badges.gitter.im/hurricane_harvey_prelims/community.svg)](https://gitter.im/hurricane_harvey_prelims/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
# `r desc::desc_get_field("Package")` (`r desc::desc_get_version() `)
## `r desc::desc_get_field("Title") `
### Prerequisites
```{r}
packages %>%
filter(type == "Depends") %>%
select(-.data$type) %>%
knitr::kable(
col.names = c("Package", "Version"),
caption = "Version not specified"
)
```
#### Docker
A Docker image of this project is available for use.
* [timtrice/hurricane_harvey_prelims](https://cloud.docker.com/repository/docker/timtrice/hurricane_harvey_prelims)
##### Run
```
docker run \
-dti \
-e DISABLE_AUTH=true \
-p 8787:8787 \
--name hurricane_harvey_prelims \
timtrice/hurricane_harvey_prelims:release
```
##### Shell
```
docker exec -ti hurricane_harvey_prelims /bin/bash
```
### Built With
* [R 3.6.0](https://www.r-project.org/) - The R Project for Statistical Computing
### Contributing
Please read [CONTRIBUTING.md](/blob/master/.github/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
### Code of Conduct
Please note that the '`r desc::desc_get_field("Package") `' project is released with a [Contributor Code of Conduct](/blob/master/.github/CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.
### Versioning
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](/tags).
### Authors
* `r format(desc::desc_get_author(), include = c("family", "given", "role"), braces = list(family = c("", ","), role = c("(Role(s): ", ")"))) `
### License
This project is licensed under the MIT License - see the [LICENSE.md](/blob/master/LICENSE.md) file for details
### Acknowledgements
`r usethis::use_tidy_thanks() `