eestrada / dotenv

Racket library to load environment variables from .env files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotenv

Build Status

This library allows Racket applications to override their environment variables with a .env file.

Usage

To load .env, just require the package and invoke it:

(require dotenv)
(dotenv-load!)

To use multiple files, use path-string? rest arguments:

(require dotenv)
(dotenv-load! "raccoon.env" "possum.env")

More details in the official documentation.

About

Racket library to load environment variables from .env files.

License:MIT License


Languages

Language:Racket 100.0%