Reputation: 21
I am new to using DeployR
(started yesterday) and I would like to know what URL
does the constructor of the RBrokerConfig
class need.
Is it the URL
for the landing page?
Or does it just need the basic URL
(http://localhost:8000)?
Upvotes: 1
Views: 72
Reputation: 29690
You require an endpoint URL. If you take a look at the source code you can see that you would need something like
/// <param name="deployrEndpoint">URL indicating the DeployR endpoint
/// (i.e http://localhost:7300/deployr )</param>
Upvotes: 1