-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
62 lines (45 loc) · 1.74 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# jsonResumeEditR
<!-- badges: start -->
![GitHub R package version](https://img.shields.io/github/r-package/v/shaunson26/jsonResumeEditR)
[![R-CMD-check](https://github.com/Shaunson26/jsonResumeEditR/actions/workflows/R-CMD-check.yml/badge.svg)](https://github.com/Shaunson26/jsonResumeEditR/actions/workflows/R-CMD-check.yml)
<!-- badges: end -->
The goal of jsonResumeEditR is to create and maintain a [JSON resume](https://jsonresume.org/getting-started/)
using [R Shiny](https://shiny.rstudio.com/). The app lives within an R package, thus the package must be
installed and the app run from the package function `run_jsonResumeEditR()` (see below).
The app should be able to:
- Allow user to edit fields within the JSON schema using inputs
- Export to JSON
- Import a JSON resume
- Clear fields
- TODO: Preview using a template builder
- TODO: Send JSON to a user Github gist for https://jsonresume.org/ hosting
## Getting started
This project uses R and R Shiny. You will need first need R installed, so install
if you do not yet have it.
### R packages
You can install the development version of jsonResumeEditR from [GitHub](https://github.com/)
(and dependencies from CRAN)
``` r
# install.packages("devtools")
# install jsonResumeEditR with dependencies in DESCRIPTION file
devtools::install_github("Shaunson26/jsonResumeEditR", dependencies = TRUE)
```
## Start the app
The app lives
```{r, eval = FALSE}
library(jsonResumeEditR)
run_jsonResumeEditR()
```
![screenshot](man/figures/screenshot.gif)