Initial pass at packaging

This commit is contained in:
Joe Cheng
2012-07-02 12:15:44 -07:00
parent 8ce5a23c4b
commit 4106161753
4 changed files with 32 additions and 0 deletions

9
.Rbuildignore Normal file
View File

@@ -0,0 +1,9 @@
^\.Rproj\.user$
^\.git$
^examples$
^README\.md$
^shiny\.Rproj$
^shiny\.sh$
^shiny\.cmd$
^run\.R$
^\.gitignore$

21
DESCRIPTION Normal file
View File

@@ -0,0 +1,21 @@
Package: shiny
Type: Package
Title: Web application framework for R
Version: 0.1
Date: 2012-07-02
Author: RStudio, Inc.
Maintainer: Joe Cheng <joe@rstudio.org>
Description: Shiny makes it fast and extremely easy to create powerful
web applications in R. Only minimal knowledge of HTML is necessary
to create beautiful and responsive web user interfaces for your R
projects.
License: GPL-3
Depends:
methods,
websockets,
RJSONIO,
xtable
Collate:
react.R
shiny.R
shinywrappers.R

0
NAMESPACE Normal file
View File

View File

@@ -103,6 +103,8 @@ statics <- function(root, sys.root=NULL) {
})
}
shinyapp <- NULL
startApp <- function(app, www.root, sys.www.root=NULL, port=8101L) {
ws_env <- create_server(port=port, webpage=statics(www.root, sys.www.root))