Skip to content

Commit bc34dc9

Browse files
committed
add funding.json
1 parent 78198fa commit bc34dc9

File tree

2 files changed

+86
-0
lines changed

2 files changed

+86
-0
lines changed

funding.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"version": "v1.0.0",
3+
"entity": {
4+
"type": "organisation",
5+
"role": "maintainer",
6+
"name": "DOTENVX LLC",
7+
"email": "[email protected]",
8+
"description": "Loads environment variables from .env for nodejs projects.",
9+
"webpageUrl": {
10+
"url": "https://dotenv.org"
11+
}
12+
},
13+
"projects": [{
14+
"guid": "dotenv",
15+
"name": "dotenv",
16+
"description": "Loads environment variables from .env for nodejs projects.",
17+
"webpageUrl": {
18+
"url": "https://dotenv.org"
19+
},
20+
"repositoryUrl": {
21+
"url": "https://dotenv.org/repo"
22+
},
23+
"licenses": ["spdx:GPL-3.0"],
24+
"tags": ["security", "devops", "developer-tools", "cryptography", "web-development", "env", "dotenv", "config"]
25+
}],
26+
"funding": {
27+
"channels": [
28+
{
29+
"guid": "github-sponsors",
30+
"type": "payment-provider",
31+
"address": "https://github.com/sponsors/motdotla",
32+
"description": "GitHub Sponsors"
33+
}
34+
],
35+
"plans": [
36+
{
37+
"guid": "individual",
38+
"status": "active",
39+
"name": "individual",
40+
"description": "Thank you for sponsoring dotenv as an individual.",
41+
"amount": 5,
42+
"currency": "USD",
43+
"frequency": "monthly",
44+
"channels": ["github-sponsors"]
45+
},
46+
{
47+
"guid": "company",
48+
"status": "active",
49+
"name": "company",
50+
"description": "Thank you for sponsoring dotenv as a company.",
51+
"amount": 600,
52+
"currency": "USD",
53+
"frequency": "monthly",
54+
"channels": ["github-sponsors"]
55+
}
56+
]
57+
}
58+
}

repo.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: repo
3+
redirect_to: https://github.com/motdotla/dotenv
4+
---
5+
6+
<div class="flex flex-col gap-6 mx-auto w-fit text-center items-center mt-40">
7+
<div class="flex flex-col gap-2">
8+
<span class="">You are being redirected to</span>
9+
<a href="https://github.com/motdotla/dotenv"><u>github.com/motdotla/dotenv</u></a>
10+
</div>
11+
12+
<a class="btn-outline w-fit" href="https://github.com/motdotla/dotenv">Continue</a>
13+
14+
<span class="text-xs">in <span id="counter">4</span> second(s)</span>
15+
</div>
16+
17+
<script>
18+
var interval
19+
interval = setInterval(function() {
20+
var div = document.querySelector("#counter")
21+
var count = div.textContent * 1 - 1
22+
div.textContent = count
23+
if (count <= 0) {
24+
window.location.replace("https://github.com/motdotla/dotenv")
25+
clearInterval(interval)
26+
}
27+
}, 1000)
28+
</script>

0 commit comments

Comments
 (0)