Skip to content

Commit

Permalink
setting up the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradley1013 committed Feb 18, 2020
1 parent d16141d commit edfca93
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
^CODE_OF_CONDUCT\.md$
^README\.Rmd$
^LICENSE\.md$
^.*\.Rproj$
^\.Rproj\.user$
^data-raw$
dev_history.R
^dev$
$run_dev.*
$run_dev.*
25 changes: 25 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Contributor Code of Conduct

As contributors and maintainers of this project, we pledge to respect all people who
contribute through reporting issues, posting feature requests, updating documentation,
submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free experience for
everyone, regardless of level of experience, gender, gender identity and expression,
sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.

Examples of unacceptable behavior by participants include the use of sexual language or
imagery, derogatory comments or personal attacks, trolling, public or private harassment,
insults, or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments,
commits, code, wiki edits, issues, and other contributions that are not aligned to this
Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed
from the project team.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by
opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the Contributor Covenant
(http://contributor-covenant.org), version 1.0.0, available at
http://contributor-covenant.org/version/1/0/0/
10 changes: 6 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
Package: whatRshiny
Title: An Amazing Shiny App
Title: A Jeapordy! Shiny App
Version: 0.0.0.9000
Authors@R: person("firstname", "lastname", email = "[email protected]", role = c("aut", "cre"))
Description: What the package does (one paragraph).
License: What license is it under?
Authors@R: person('Tyler', 'Bradley', email = '[email protected]', role = c('cre', 'aut'))
Description: Play a round of Jeapordy! from a real game
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Imports:
shiny,
golem
RoxygenNote: 6.1.0
URL: https://github.com/tbradley1013/whatRshiny
BugReports: https://github.com/tbradley1013/whatRshiny/issues
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YEAR: 2020
COPYRIGHT HOLDER: Tyler Bradley
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2020 Tyler Bradley

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# whatRshiny 0.0.0.9000

* Added a `NEWS.md` file to track changes to the package.
4 changes: 2 additions & 2 deletions dev/01_start.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ golem::fill_desc(
author_first_name = "Tyler", # Your First Name
author_last_name = "Bradley", # Your Last Name
author_email = "[email protected]", # Your Email
repo_url = NULL # The (optional) URL of the GitHub Repo
repo_url = "https://github.com/tbradley1013/whatRshiny" # The (optional) URL of the GitHub Repo
)

## Use this desc to set {golem} options
Expand All @@ -26,7 +26,7 @@ golem::set_golem_options()
##
## If you want to use the MIT licence, README, code of conduct, lifecycle badge, and news

usethis::use_mit_license( name = "Golem User" ) # You can set another licence here
usethis::use_mit_license( name = "Tyler Bradley" ) # You can set another licence here
usethis::use_readme_rmd( open = FALSE )
usethis::use_code_of_conduct()
usethis::use_lifecycle_badge( "Experimental" )
Expand Down

0 comments on commit edfca93

Please sign in to comment.