I have a question about running shiny app after username and password are correct. Similar question is here but I wont to run my whole app.R from runApp(appDir =())
Is is possible at all ? I hope this is not the same question as in the link. I finished my app and I want to only add username and password for protection.
Thanks!
Asked
Active
Viewed 871 times
0

Community
- 1
- 1

A.Trzcionkowska
- 133
- 1
- 2
- 10
-
It seems to me you want a Password App that upon activation (username and password = TRUE) will start another app? – Pork Chop Feb 16 '16 at 07:57
-
Yes, exactly. Your solution is great and I'm wondering if there is possible to insted: ` if (USER$Logged == TRUE) { output$page <- renderUI({ div(class="outer",do.call(navbarPage,c(inverse=TRUE,title = "Contratulations you got in!",ui2()))) }) print(ui)` I can run my app.R ? – A.Trzcionkowska Feb 16 '16 at 08:11
-
Its hard to understand for what it needed? but you can for example create `cmd` which `runapp` .. after `login`run cmd and then redirect to new adress. But it cant be done for many users simulteneosly(my mind). do you want app which runs more than one time when more than one users `logged` ? – Batanichek Feb 16 '16 at 09:52
-
I have Shiny Server open source app and I wont to add logging window. If username and password are TRUE somebody can see my app. – A.Trzcionkowska Feb 16 '16 at 10:05