Deploys an application consisting of plumber API routes. The given directory
must contain a script returning a plumb
object or a plumber API definition.
Arguments
- api
Path to the API project directory. Must contain either
entrypoint.R
orplumber.R
(for plumber APIs) or_server.yml
(for plumber2 APIs)- ...
Additional arguments to
deployApp()
.
Details
Deploy a plumber API definition by either supplying a directory
containing plumber.R
(an API definition) or entrypoint.R
that returns a
plumb
object created by plumber::plumb()
. See the plumber documentation
for more information. Alternatively, deploy a plumber2 API by supplying a
directory containing _server.yml
.
See also
Other Deployment functions:
applications()
,
deployApp()
,
deployDoc()
,
deploySite()
,
deployTFModel()