Loads a .env file in Crystal and optionally sets values directly into your ENV.
Will always return the .env file as a hash regardless of whether you chose to load into your ENV
or not. Will treat a non-existent
.env file as an empty one.
- Add the dependency to your
shard.yml
:
dependencies:
dotenv:
github: drum445/dotenv
- Run
shards install
require "dotenv"
Having a .env file
ENV=dev
PORT=3000
LOGGING=true
CORS=*
DB_DRIVER=mysql
DB_USERNAME=root
DB_PASSWORD=password
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=test
require "dotenv"
Dotenv.load # => {"ENV" => "dev", "PORT" => "3000", "LOGGING" => "true", "CORS" => "*", "DB_DRIVER" => "mysql", "DB_USERNAME" => "root", "DB_PASSWORD" => "password", "DB_HOST" => "localhost", "DB_PORT" => "3306", "DB_DATABASE" => "test"}
require "dotenv"
hash = Dotenv.load(set_env: false)
require "dotenv"
Dotenv.load(path: ".env.live")
By default the existing environment will be overriden by contents of the .env file. To disable this behaviour pass false to override_env parameter:
require "dotenv"
hash = Dotenv.load(override_env: false)
- Clone the repository:
git clone [email protected]:drum445/dotenv.git
. There are no dependencies, so noshards install
is needed (but won't do any harm). - Change into the project root directory:
cd dotenv
. - Run specs:
crystal spec
.
- Fork it (https://github.com/drum445/dotenv/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- drum445 - creator and maintainer