Convert Figma logo to code with AI

bkeepers logodotenv

A Ruby gem to load environment variables from `.env`.

6,576
504
6,576
6

Top Related Projects

19,014

Loads environment variables from .env for nodejs projects.

13,088

Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.

Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.

A Go port of Ruby's dotenv library (Loads environment variables from .env files)

12,232

unclutter your .profile

Quick Overview

Dotenv is a Ruby gem that loads environment variables from a .env file into ENV. It simplifies the process of managing configuration in Ruby applications, especially when dealing with sensitive information like API keys or database credentials.

Pros

  • Easy to use and integrate into Ruby projects
  • Keeps sensitive information out of version control
  • Supports multiple environments (development, test, production)
  • Compatible with various Ruby frameworks, including Rails

Cons

  • Limited to Ruby applications
  • Requires careful management of .env files across different environments
  • Can lead to security risks if .env files are not properly protected
  • May encourage storing too much configuration in environment variables

Code Examples

Loading environment variables:

require 'dotenv/load'

puts ENV['API_KEY']

Loading a specific .env file:

require 'dotenv'

Dotenv.load('.env.custom')

Using Dotenv in a Rake task:

require 'dotenv/tasks'

task :mytask => :dotenv do
    # Task code here
end

Getting Started

  1. Add Dotenv to your Gemfile:
gem 'dotenv'
  1. Create a .env file in your project root:
API_KEY=your_api_key_here
DATABASE_URL=postgres://localhost/myapp
  1. Load Dotenv in your application:
require 'dotenv/load'
  1. Access environment variables:
puts ENV['API_KEY']

Competitor Comparisons

19,014

Loads environment variables from .env for nodejs projects.

Pros of dotenv (motdotla)

  • More actively maintained with frequent updates
  • Supports TypeScript out of the box
  • Offers additional features like preload and config options

Cons of dotenv (motdotla)

  • Slightly larger package size
  • May have more dependencies

Code Comparison

dotenv (bkeepers):

require 'dotenv'
Dotenv.load

dotenv (motdotla):

require('dotenv').config()

Both libraries serve the same primary purpose of loading environment variables from a .env file into process.env. The main differences lie in their implementation details, language support, and additional features.

dotenv (motdotla) is more popular and widely used in the JavaScript ecosystem, with better TypeScript support and more frequent updates. It also offers additional configuration options and features like preloading.

dotenv (bkeepers) is primarily used in Ruby projects and has a simpler implementation. It may be preferred for Ruby-specific projects or when a more lightweight solution is needed.

The code usage is similar for both libraries, with slight syntax differences due to the programming languages they're designed for. Both allow easy loading of environment variables from a .env file into the application's environment.

13,088

Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.

Pros of phpdotenv

  • Specifically designed for PHP environments, offering better integration with PHP projects
  • Supports variable overloading, allowing for more flexible configuration management
  • Includes built-in type casting for environment variables

Cons of phpdotenv

  • Limited to PHP projects, whereas dotenv is language-agnostic
  • May have a steeper learning curve for developers not familiar with PHP-specific conventions
  • Slightly more complex setup process compared to dotenv

Code Comparison

dotenv:

require 'dotenv'
Dotenv.load
puts ENV['DATABASE_URL']

phpdotenv:

$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
echo $_ENV['DATABASE_URL'];

Both libraries serve the purpose of loading environment variables from a .env file, but their implementation and usage differ based on their target languages. dotenv is more straightforward and can be used in various programming environments, while phpdotenv offers PHP-specific features and integrations.

The choice between these libraries largely depends on the project's requirements and the development team's familiarity with PHP. For PHP-centric projects, phpdotenv may offer more tailored functionality, while dotenv provides a more versatile solution for multi-language environments.

Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.

Pros of python-dotenv

  • Specifically designed for Python, offering seamless integration with Python projects
  • Supports multiple file formats (.env, .ini, .yaml) for environment variables
  • Provides CLI tools for easy management of environment variables

Cons of python-dotenv

  • Limited to Python ecosystem, unlike dotenv which supports multiple languages
  • May have a steeper learning curve for users familiar with the original dotenv

Code Comparison

python-dotenv:

from dotenv import load_dotenv
load_dotenv()
import os
secret_key = os.getenv("SECRET_KEY")

dotenv:

require 'dotenv'
Dotenv.load
secret_key = ENV['SECRET_KEY']

Both libraries serve similar purposes, allowing developers to load environment variables from a file. The main difference lies in their language-specific implementations and syntax.

python-dotenv is tailored for Python projects, offering more Python-centric features and integration. It's ideal for developers working exclusively in Python environments.

dotenv, on the other hand, is more versatile and can be used across multiple programming languages. It's simpler in implementation but may lack some Python-specific optimizations.

The choice between the two largely depends on the project's requirements and the developer's preference for language-specific tools versus multi-language compatibility.

A Go port of Ruby's dotenv library (Loads environment variables from .env files)

Pros of godotenv

  • Written in Go, providing native support for Go projects
  • Includes additional features like godotenv.Load() for loading multiple files
  • Supports writing environment variables back to a file

Cons of godotenv

  • Limited to Go projects, unlike dotenv which supports multiple languages
  • Less widely adopted compared to dotenv
  • Fewer third-party integrations and ecosystem support

Code Comparison

dotenv (Ruby):

require 'dotenv'
Dotenv.load
puts ENV['MY_VAR']

godotenv (Go):

import "github.com/joho/godotenv"
godotenv.Load()
fmt.Println(os.Getenv("MY_VAR"))

Both libraries serve the same primary purpose of loading environment variables from a .env file. The main difference lies in their target languages and ecosystems. dotenv is more versatile, supporting multiple languages and frameworks, while godotenv is specifically designed for Go projects.

dotenv has a larger community and more extensive ecosystem support, making it a popular choice for various development environments. godotenv, on the other hand, offers native Go support and some additional features specific to Go projects.

The choice between the two largely depends on the programming language and specific project requirements. For Go developers, godotenv provides a tailored solution, while dotenv remains the go-to option for multi-language environments and broader compatibility.

12,232

unclutter your .profile

Pros of direnv

  • System-wide environment management across multiple projects
  • Automatic loading/unloading of environment variables when entering/exiting directories
  • Supports various shells and integrates with version control systems

Cons of direnv

  • Requires installation and shell configuration
  • Learning curve for .envrc file syntax and direnv commands
  • Potential security risks if not properly configured

Code Comparison

direnv (.envrc file):

export API_KEY="your_api_key"
export DATABASE_URL="postgres://user:pass@host:port/db"
layout python

dotenv (.env file):

API_KEY=your_api_key
DATABASE_URL=postgres://user:pass@host:port/db

Key Differences

  • direnv is a shell extension that manages environment variables per directory, while dotenv is a library for loading environment variables from a file into the application's environment.
  • direnv automatically loads/unloads variables when entering/exiting directories, whereas dotenv requires manual loading in the application code.
  • direnv supports more complex configurations and shell-specific features, while dotenv focuses on simple key-value pairs.

Use Cases

  • direnv: Ideal for developers working on multiple projects with different environment setups or complex configurations.
  • dotenv: Suitable for simpler applications or when you need a lightweight solution for managing environment variables within a single project.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

dotenv Gem Version

Shim to load environment variables from .env into ENV in development.

Storing configuration in the environment is one of the tenets of a twelve-factor app. Anything that is likely to change between deployment environments–such as resource handles for databases or credentials for external services–should be extracted from the code into environment variables.

But it is not always practical to set environment variables on development machines or continuous integration servers where multiple projects are run. dotenv loads variables from a .env file into ENV when the environment is bootstrapped.

Installation

Add this line to the top of your application's Gemfile and run bundle install:

gem 'dotenv', groups: [:development, :test]

Usage

Add your application configuration to your .env file in the root of your project:

S3_BUCKET=YOURS3BUCKET
SECRET_KEY=YOURSECRETKEYGOESHERE

Whenever your application loads, these variables will be available in ENV:

config.fog_directory = ENV['S3_BUCKET']

See the API Docs for more.

Rails

Dotenv will automatically load when your Rails app boots. See Customizing Rails to change which files are loaded and when.

Sinatra / Ruby

Load Dotenv as early as possible in your application bootstrap process:

require 'dotenv/load'

# or
require 'dotenv'
Dotenv.load

By default, load will look for a file called .env in the current working directory. Pass in multiple files and they will be loaded in order. The first value set for a variable will win.

require 'dotenv'
Dotenv.load('file1.env', 'file2.env')

Autorestore in tests

Since 3.0, dotenv in a Rails app will automatically restore ENV after each test. This means you can modify ENV in your tests without fear of leaking state to other tests. It works with both ActiveSupport::TestCase and Rspec.

To disable this behavior, set config.dotenv.autorestore = false in config/application.rb or config/environments/test.rb. It is disabled by default if your app uses climate_control or ice_age.

To use this behavior outside of a Rails app, just require "dotenv/autorestore" in your test suite.

See Dotenv.save, Dotenv.restore, and Dotenv.modify(hash) { ... } for manual usage.

Rake

To ensure .env is loaded in rake, load the tasks:

require 'dotenv/tasks'

task mytask: :dotenv do
  # things that require .env
end

CLI

You can use the dotenv executable load .env before launching your application:

$ dotenv ./script.rb

The dotenv executable also accepts the flag -f. Its value should be a comma-separated list of configuration files, in the order of most important to least. All of the files must exist. There must be a space between the flag and its value.

$ dotenv -f ".env.local,.env" ./script.rb

The dotenv executable can optionally ignore missing files with the -i or --ignore flag. For example, if the .env.local file does not exist, the following will ignore the missing file and only load the .env file.

$ dotenv -i -f ".env.local,.env" ./script.rb

Load Order

If you use gems that require environment variables to be set before they are loaded, then list dotenv in the Gemfile before those other gems and require dotenv/load.

gem 'dotenv', require: 'dotenv/load'
gem 'gem-that-requires-env-variables'

Customizing Rails

Dotenv will load the following files depending on RAILS_ENV, with the first file having the highest precedence, and .env having the lowest precedence:

Priority Environment .gitignoreit? Notes
development test production
highest .env.development.local .env.test.local .env.production.local Yes Environment-specific local overrides
2nd .env.local N/A .env.local Yes Local overrides
3rd .env.development .env.test .env.production No Shared environment-specific variables
last .env .env .env Maybe Shared for all environments

These files are loaded during the before_configuration callback, which is fired when the Application constant is defined in config/application.rb with class Application < Rails::Application. If you need it to be initialized sooner, or need to customize the loading process, you can do so at the top of application.rb

# config/application.rb
Bundler.require(*Rails.groups)

# Load .env.local in test
Dotenv::Rails.files.unshift(".env.local") if ENV["RAILS_ENV"] == "test"

module YourApp
  class Application < Rails::Application
    # ...
  end
end

Available options:

  • Dotenv::Rails.files - list of files to be loaded, in order of precedence.
  • Dotenv::Rails.overwrite - Overwrite existing ENV variables with contents of .env* files
  • Dotenv::Rails.logger - The logger to use for dotenv's logging. Defaults to Rails.logger
  • Dotenv::Rails.autorestore - Enable or disable autorestore

Multi-line values

Multi-line values with line breaks must be surrounded with double quotes.

PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
...
HkVN9...
...
-----END DSA PRIVATE KEY-----"

Prior to 3.0, dotenv would replace \n in quoted strings with a newline, but that behavior is deprecated. To use the old behavior, set DOTENV_LINEBREAK_MODE=legacy before any variables that include \n:

DOTENV_LINEBREAK_MODE=legacy
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nHkVN9...\n-----END DSA PRIVATE KEY-----\n"

Command Substitution

You need to add the output of a command in one of your variables? Simply add it with $(your_command):

DATABASE_URL="postgres://$(whoami)@localhost/my_database"

Variable Substitution

You need to add the value of another variable in one of your variables? You can reference the variable with ${VAR} or often just $VAR in unqoted or double-quoted values.

DATABASE_URL="postgres://${USER}@localhost/my_database"

If a value contains a $ and it is not intended to be a variable, wrap it in single quotes.

PASSWORD='pas$word'

Comments

Comments may be added to your file as such:

# This is a comment
SECRET_KEY=YOURSECRETKEYGOESHERE # comment
SECRET_HASH="something-with-a-#-hash"

Exports

For compatability, you may also add export in front of each line so you can source the file in bash:

export S3_BUCKET=YOURS3BUCKET
export SECRET_KEY=YOURSECRETKEYGOESHERE

Required Keys

If a particular configuration value is required but not set, it's appropriate to raise an error.

To require configuration keys:

# config/initializers/dotenv.rb

Dotenv.require_keys("SERVICE_APP_ID", "SERVICE_KEY", "SERVICE_SECRET")

If any of the configuration keys above are not set, your application will raise an error during initialization. This method is preferred because it prevents runtime errors in a production application due to improper configuration.

Parsing

To parse a list of env files for programmatic inspection without modifying the ENV:

Dotenv.parse(".env.local", ".env")
# => {'S3_BUCKET' => 'YOURS3BUCKET', 'SECRET_KEY' => 'YOURSECRETKEYGOESHERE', ...}

This method returns a hash of the ENV var name/value pairs.

Templates

You can use the -t or --template flag on the dotenv cli to create a template of your .env file.

$ dotenv -t .env

A template will be created in your working directory named {FILENAME}.template. So in the above example, it would create a .env.template file.

The template will contain all the environment variables in your .env file but with their values set to the variable names.

# .env
S3_BUCKET=YOURS3BUCKET
SECRET_KEY=YOURSECRETKEYGOESHERE

Would become

# .env.template
S3_BUCKET=S3_BUCKET
SECRET_KEY=SECRET_KEY

Frequently Answered Questions

Can I use dotenv in production?

dotenv was originally created to load configuration variables into ENV in development. There are typically better ways to manage configuration in production environments - such as /etc/environment managed by Puppet or Chef, heroku config, etc.

However, some find dotenv to be a convenient way to configure Rails applications in staging and production environments, and you can do that by defining environment-specific files like .env.production or .env.test.

If you use this gem to handle env vars for multiple Rails environments (development, test, production, etc.), please note that env vars that are general to all environments should be stored in .env. Then, environment specific env vars should be stored in .env.<that environment's name>.

Should I commit my .env file?

Credentials should only be accessible on the machines that need access to them. Never commit sensitive information to a repository that is not needed by every development machine and server.

Personally, I prefer to commit the .env file with development-only settings. This makes it easy for other developers to get started on the project without compromising credentials for other environments. If you follow this advice, make sure that all the credentials for your development environment are different from your other deployments and that the development credentials do not have access to any confidential data.

Why is it not overwriting existing ENV variables?

By default, it won't overwrite existing environment variables as dotenv assumes the deployment environment has more knowledge about configuration than the application does. To overwrite existing environment variables you can use Dotenv.load files, overwrite: true.

You can also use the -o or --overwrite flag on the dotenv cli to overwrite existing ENV variables.

$ dotenv -o -f ".env.local,.env"

Contributing

If you want a better idea of how dotenv works, check out the Ruby Rogues Code Reading of dotenv.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

NPM DownloadsLast 30 Days