diff --git a/QUICKSTART_NOTES.md b/QUICKSTART_NOTES.md new file mode 100644 index 0000000..96776f9 --- /dev/null +++ b/QUICKSTART_NOTES.md @@ -0,0 +1,28 @@ +# Kalshi Starter – Quickstart Notes + +This file complements the main README and provides a short step-by-step checklist. + +## 1. Create an environment file + + cp env.sample .env + +## 2. Create and activate a virtual environment + + python -m venv .venv + source .venv/bin/activate # On Windows: .venv\Scripts\activate + +## 3. Install dependencies + + pip install -r requirements.txt + +## 4. Verify your environment + + python check_env.py + +## 5. Run the main example + + python main.py + +--- + +This file does not replace the main README. It is intended as a quick, copy-paste friendly checklist for new users of the Kalshi starter code.