Skip to content

Commit

Permalink
Merge pull request #5 from ya55en/pass-silently-when-dotenv-file-none…
Browse files Browse the repository at this point in the history
…xistent

Treat a non-existent dotenv file as an empty one
  • Loading branch information
drum445 authored Nov 17, 2022
2 parents 0731842 + 64275c6 commit 4c8829b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# dotenv

Loads .env file in Crystal and optionally loads them directly into your ENV var: https://crystal-lang.org/api/0.27.0/ENV.html
Will always return the .env file as a hash regardless of whether you chose to load into your ENV or not
Loads a .env file in Crystal and optionally sets values directly into your [ENV](https://crystal-lang.org/api/latest/ENV.html).
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.

## Installation

Expand Down Expand Up @@ -34,21 +35,21 @@ DB_PORT=3306
DB_DATABASE=test
```
##### Using a file called .env and loading into your ENV var
##### Using a file called .env and loading into your `ENV`
```crystal
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"}
```

##### Using a file called .env and NOT loading into your ENV var
##### Using a file called .env and NOT loading into your `ENV`
```crystal
require "dotenv"
hash = Dotenv.load(set_env: false)
```

##### Using a file NOT called .env and loading into your ENV var
##### Using a file NOT called .env and loading into your `ENV`
```crystal
require "dotenv"
Expand All @@ -66,7 +67,10 @@ hash = Dotenv.load(override_env: false)

## Development

TODO: Write development instructions here
1. Clone the repository: `git clone [email protected]:drum445/dotenv.git`.
There are no dependencies, so no `shards install` is needed (but won't do any harm).
3. Change into the project root directory: `cd dotenv`.
2. Run specs: `crystal spec`.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dotenv
version: 0.4.0
version: 0.5.0

authors:
- drum445 <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions spec/data/empty.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# An empty .env file
8 changes: 8 additions & 0 deletions spec/dotenv_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,13 @@ describe Dotenv do
Dotenv.load("spec/data/connect.env", override_env: false)
ENV["DB_HOST"].should eq "example.com"
end

it "produces an empty hash with an empty dotenv file" do
Dotenv.load("spec/data/empty.env").should eq Hash(String, String).new
end

it "produces an empty hash with a non-existent dotenv file" do
Dotenv.load("no/such/path.env").should eq Hash(String, String).new
end
end
end
6 changes: 3 additions & 3 deletions src/dotenv.cr
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module Dotenv
def self.load(path = ".env", set_env = true, override_env = true) : Hash(String, String)
hash = process_file(path)
if set_env
set_env(hash, override_env)
end
set_env(hash, override_env) if set_env

hash
rescue exc : File::NotFoundError
Hash(String, String).new
end

private def self.process_file(path : String)
Expand Down

0 comments on commit 4c8829b

Please sign in to comment.