Skip to content

Commit 53920cd

Browse files
committed
Thanks to @kmatthews812 for sponsoring dotenv
1 parent b5d4983 commit 53920cd

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
Shim to load environment variables from `.env` into `ENV` in *development*.
44

5+
<img align="left" src="https://github.com/user-attachments/assets/0052ed0b-00d2-416a-bdaa-0466c0226933" width="80" />
6+
<div><sup>Dotenv is proud to be <a href="https://github.com/sponsors/bkeepers">sponsored by</a>:</sup></div>
7+
<strong><a href="https://bit.ly/dotenv-stoked-seagull">Stoked Seagull Software</a></strong>
8+
<div>Need help with a software project but don't know where to begin? <a href="https://bit.ly/dotenv-stoked-seagull">Stoked Seagull can help.</a></div><br><br>
9+
510
Storing [configuration in the environment](http://12factor.net/config) is one of the tenets of a [twelve-factor app](http://12factor.net). 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.
611

712
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.

dotenv-rails.gemspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ Gem::Specification.new "dotenv-rails", Dotenv::VERSION do |gem|
1414

1515
gem.add_development_dependency "spring"
1616

17-
gem.metadata["changelog_uri"] = "https://github.com/bkeepers/dotenv/releases"
17+
gem.metadata = {
18+
"changelog_uri" => "https://github.com/bkeepers/dotenv/releases",
19+
"funding_uri" => "https://github.com/sponsors/bkeepers"
20+
}
1821
end

dotenv.gemspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@ Gem::Specification.new "dotenv", Dotenv::VERSION do |gem|
1717

1818
gem.required_ruby_version = ">= 3.0"
1919

20-
gem.metadata["changelog_uri"] = "https://github.com/bkeepers/dotenv/releases"
20+
gem.metadata = {
21+
"changelog_uri" => "https://github.com/bkeepers/dotenv/releases",
22+
"funding_uri" => "https://github.com/sponsors/bkeepers"
23+
}
2124
end

0 commit comments

Comments
 (0)