Skip to content

Latest commit

 

History

History

r

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

R Dotenv

For using it in R first you have to have:

  1. A R version installed.

  2. Optionally having a R Studio.

For a .env file like this:

# Install package if not installed yet
if (!require("dotenv")) install.packages("dotenv")
require("dotenv")

load_dot_env(".env")

DB_NAME <- Sys.getenv("DB_NAME")
print(DB_NAME)