sd_set_password {surveydown} | R Documentation |
Set password for surveydown survey
Description
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
.
Usage
sd_set_password(password)
Arguments
password |
Character string. The password to be set for the database connection. |
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.
Value
None. The function is called for its side effects.
Examples
## Not run:
# 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'))
## End(Not run)
[Package surveydown version 0.4.0 Index]