diff options
author | 2021-05-10 15:54:32 +0100 | |
---|---|---|
committer | 2021-05-10 15:54:32 +0100 | |
commit | 772fa4b39e50a57b10a5d8ab35ffd42a9efdaa44 (patch) | |
tree | d8e6f390c01ef72105755da323c9556ec1d98d6a | |
parent | feat: add dotenv tag (diff) |
chore: add pypi link for python-dotenv
-rw-r--r-- | bot/resources/tags/dotenv.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/dotenv.md b/bot/resources/tags/dotenv.md index cbf23c07c..acb9a216e 100644 --- a/bot/resources/tags/dotenv.md +++ b/bot/resources/tags/dotenv.md @@ -4,7 +4,7 @@ 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` 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 ``` |