From 679505af8872a95f086a8ceed736935c5a6a19b9 Mon Sep 17 00:00:00 2001 From: acgzone1 Date: Tue, 13 Jan 2026 08:59:03 +0100 Subject: [PATCH] Add authentication notes documentation Adds basic guidance on API authentication and credential safety --- docs/AUTHENTICATION_NOTES.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/AUTHENTICATION_NOTES.md diff --git a/docs/AUTHENTICATION_NOTES.md b/docs/AUTHENTICATION_NOTES.md new file mode 100644 index 00000000..9e071c22 --- /dev/null +++ b/docs/AUTHENTICATION_NOTES.md @@ -0,0 +1,10 @@ +# Authentication Notes + +This project uses API credentials to authenticate requests to Kalshi. + +General guidelines: +- Keep API keys private +- Do not commit secrets to the repository +- Use environment variables for local development + +These notes are intended to help beginners avoid common mistakes.