This function sets your surveydown password, which is used to access
the 'PostgreSQL' data (e.g. Supabase). The password is saved in a .Renviron
file and adds .Renviron
to .gitignore
.
Details
The function performs the following actions:
Creates a
.Renviron
file in the root directory if it doesn't exist.Adds or updates the
SURVEYDOWN_PASSWORD
entry in the.Renviron
file.Adds
.Renviron
to.gitignore
if it's not already there.
Examples
if (FALSE) { # \dontrun{
# Set a temporary password for demonstration
temp_password <- paste0(sample(letters, 10, replace = TRUE), collapse = "")
# Set the password
sd_set_password(temp_password)
# After restarting R, verify the password was set
cat("Password is :", Sys.getenv('SURVEYDOWN_PASSWORD'))
} # }