e30e75b5d4
Code Quality / Oxlint + Oxfmt (push) Waiting to run
Code Quality / Template Sync (push) Waiting to run
Code Quality / Build Changed Packages (push) Waiting to run
Code Quality / Test Changed Packages (push) Waiting to run
Deploy Expo Example / Deploy Production (push) Waiting to run
Deploy Ink Example / Deploy Production (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.12) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Waiting to run
Deploy Shadcn Registry / Deploy Production (push) Waiting to run
Template Metrics / LOC + Bundle Size (push) Waiting to run
Changesets / Create Version PR (push) Has been cancelled
19 lines
408 B
Bash
19 lines
408 B
Bash
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
DEBUG=true
|
|
|
|
# AI Provider Configuration (choose one)
|
|
# OpenAI Configuration
|
|
OPENAI_API_KEY=your_openai_api_key_here
|
|
OPENAI_MODEL=gpt-4o-mini
|
|
|
|
# Anthropic Configuration
|
|
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
# ANTHROPIC_MODEL=claude-3-haiku-20240307
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGINS=http://localhost:3000,https://yourapp.com
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO |