4

I would like to know if there is any documentation about interfacing golem structure and shinymanager which is a package I use frequently to secure my app. The shinymanager workflow proposed on their github works well with a Ui.R / Server.R arborescence by wrapping the UI object in the secure_app() function and calling the server part to get the credentials, which in my case is a database called ‘credentials.sqlite’ stored on the package directory.

Do you have any snippets for that ?

Thanks you very much.

Sofiane M'barki
  • 193
  • 1
  • 1
  • 11

1 Answers1

3

Sure, here is how to:

See https://github.com/ColinFay/golemshinymanager for the reprex

Cheers, Colin

Colin FAY
  • 4,849
  • 1
  • 12
  • 29
  • 1
    Colin, I tried this reprex but it does not work. The login page never shows up, unless I redefine it inside ```app_ui.R```. However, doing that throws an error when performing golem recommended tests. Any suggestions? – eduardokapp Oct 09 '20 at 18:57
  • These repositories appear to have been deleted/moved, does anyone know where they live now? – Bryce Roney May 11 '22 at 02:11
  • 2
    @BryceRoney yep : https://github.com/ColinFay/golemexamples :) – Colin FAY May 13 '22 at 09:53
  • @ColinFAY golem framework is fantastic. Thank you for your efforts! – TarJae Jul 22 '23 at 21:32