Files
shiny/man/startApp.Rd
2012-07-04 14:24:58 -07:00

28 lines
709 B
R

\name{startApp}
\alias{startApp}
\title{Creates a new app with the given properties.}
\usage{
startApp(app = "./app.R", www.root = "./www",
sys.www.root = system.file("www", package = "shiny"),
port = 8101L)
}
\arguments{
\item{app}{Path to the R file that contains the server
application logic.}
\item{www.root}{Path to the root of the
application-specific www files (which should include
index.html).}
\item{sys.www.root}{Path to the system www root, that is,
the assets that are shared by all Shiny applications
(shiny.css, shiny.js, etc.).}
\item{port}{The TCP port that the application should
listen on.}
}
\description{
Creates a new app with the given properties.
}