litellm/docs/my-website
Krish Dholakia f65eec8fa8
docs: Update CLI arguments documentation with all available options (#20437)
- Reorganized documentation into logical sections (Server Configuration,
  Server Backend Options, SSL/TLS Configuration, Model Configuration,
  Model Parameters, Database Configuration, Debugging, Testing & Health Checks)
- Added missing CLI arguments:
  - --iam_token_db_auth: RDS IAM token authentication for database connections
  - --run_gunicorn: Start proxy with gunicorn backend
  - --run_hypercorn: Start proxy with hypercorn backend (HTTP/2 support)
  - --ssl_keyfile_path, --ssl_certfile_path, --ciphers: SSL/TLS configuration
  - --keepalive_timeout: Uvicorn keepalive timeout setting
  - --max_requests_before_restart: Worker recycling for memory management
  - --use_prisma_db_push: Alternative database schema update method
  - --test_async, --num_requests: Async endpoint testing
  - --version/-v: Print version
  - --max_budget: Set budget limits for API calls
  - --headers, --add_key, --save: Model configuration options
  - --use_queue: Celery workers for async endpoints
  - --local: Local debugging flag
- Updated default value for --num_workers to reflect actual behavior
- Added environment variable documentation for applicable options

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
2026-02-05 08:46:37 -08:00
..
blog Add blog post: Achieving Sub-Millisecond Proxy Overhead (#20309) 2026-02-02 17:46:36 -08:00
docs docs: Update CLI arguments documentation with all available options (#20437) 2026-02-05 08:46:37 -08:00
img docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
release_notes docs: Update v1.81.6 release notes - focus on Logs v2 with Tool Call Tracing (#20225) 2026-01-31 19:29:06 -08:00
src docs/blog index page (#20188) 2026-01-31 15:11:45 -08:00
static feat: Add adopters page and data structure (#18605) 2026-01-03 21:51:19 +05:30
.gitignore
.trivyignore security fix 2025-11-14 18:43:41 -08:00
babel.config.js
Dockerfile
docusaurus.config.js fix 2025-12-20 15:21:00 +05:30
index.md
package-lock.json Overriding lodash-es with version 4.17.23 in docs 2026-01-22 12:13:40 -08:00
package.json Overriding lodash-es with version 4.17.23 in docs 2026-01-22 12:13:40 -08:00
README.md
sidebars.js Merge pull request #20318 from BerriAI/litellm_oss_staging_02_03_2026 2026-02-04 17:49:30 +05:30

Website

This website is built using Docusaurus 2, a modern static website generator.

Installation

$ yarn

Local Development

$ yarn start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

$ yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Using SSH:

$ USE_SSH=true yarn deploy

Not using SSH:

$ GIT_USER=<Your GitHub username> yarn deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.