Skip to content

Commit

Permalink
Initial pass at packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Jul 2, 2012
1 parent 8ce5a23 commit 4106161
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
^\.Rproj\.user$
^\.git$
^examples$
^README\.md$
^shiny\.Rproj$
^shiny\.sh$
^shiny\.cmd$
^run\.R$
^\.gitignore$
21 changes: 21 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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
Empty file added NAMESPACE
Empty file.
2 changes: 2 additions & 0 deletions R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4106161

Please sign in to comment.