Update app.R
Browse files
app.R
CHANGED
|
@@ -159,10 +159,10 @@ gt_theme_tim <- function(gt_object,...) {
|
|
| 159 |
}
|
| 160 |
|
| 161 |
user_base <- tibble::tibble(
|
| 162 |
-
user = c("
|
| 163 |
-
password = c(Sys.getenv("Password")
|
| 164 |
-
permissions = c("admin"
|
| 165 |
-
name = c("User One"
|
| 166 |
)
|
| 167 |
|
| 168 |
# Define UI for application that draws a histogram
|
|
|
|
| 159 |
}
|
| 160 |
|
| 161 |
user_base <- tibble::tibble(
|
| 162 |
+
user = c(Sys.getenv("Username"),
|
| 163 |
+
password = c(Sys.getenv("Password")),
|
| 164 |
+
permissions = c("admin"),
|
| 165 |
+
name = c("User One")
|
| 166 |
)
|
| 167 |
|
| 168 |
# Define UI for application that draws a histogram
|