aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar miki55555115 <[email protected]>2023-08-26 16:32:59 +0200
committerGravatar Amrou Bellalouna <[email protected]>2023-08-26 16:36:18 +0200
commit9d2e5b2084fa7d456b0ffad4a50127e2a752e661 (patch)
tree58464ba1f46d6d25005bfb5de2c23a5b437e900c
parentfix(tags): resolve SyntaxError in dotenv reset command (diff)
feat(tags): update link and syntax in dotenv tag
-rw-r--r--bot/resources/tags/dotenv.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/resources/tags/dotenv.md b/bot/resources/tags/dotenv.md
index bc6c0c766..b1dc57fa5 100644
--- a/bot/resources/tags/dotenv.md
+++ b/bot/resources/tags/dotenv.md
@@ -6,7 +6,7 @@ embed:
Dotenv files are especially suited for storing secrets as they are a key-value store in a file, which can be easily loaded in most programming languages and ignored by version control systems like Git with a single entry in a `.gitignore` file.
-In python you can use dotenv files with the [`python-dotenv`](https://pypi.org/project/python-dotenv) module from PyPI, which can be installed with `pip install python-dotenv`. To use dotenv files you'll first need a file called `.env`, with content such as the following:
+In Python you can use dotenv files with the [`python-dotenv`](https://pypi.org/project/python-dotenv) module from PyPI, which can be installed with `pip install python-dotenv`. To use dotenv files you'll first need a file called `.env`, with content such as the following:
```
TOKEN=a00418c85bff087b49f23923efe40aa5
```
@@ -16,10 +16,10 @@ from dotenv import load_dotenv
load_dotenv()
```
-The variables from the file have now been loaded into your programs environment, and you can access them using `os.getenv()` anywhere in your program, like this:
+The variables from the file have now been loaded into your program's environment, and you can access them using `os.getenv()` anywhere in your program, like this:
```py
from os import getenv
my_token = getenv("TOKEN")
```
-For further reading about tokens and secrets, please read [this explanation](https://vcokltfre.dev/tips/tokens).
+For further reading about tokens and secrets, please read [this explanation](https://tutorial.vco.sh/tips/tokens/).