From 687b9a8996252ffb2a9382836e58273ef9c17a6c Mon Sep 17 00:00:00 2001 From: supercarefor Date: Fri, 19 Dec 2025 16:32:50 +0100 Subject: [PATCH] docs: add security note about .gitignore for API keys Reminds developers to check .gitignore before adding credentials. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2ef80bb..972cd5a 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,4 @@ Install requirements.txt in a virtual environment of your choice and execute mai pip install -r requirements.txt python main.py ``` +> 💡 **Protect Your Credentials**: Before adding your API keys, ensure the `.env` file is listed in the project's `.gitignore`. This prevents accidentally committing and exposing your private keys to version control.