Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Required: OpenRouter API key for LLM chat functionality
OPENROUTER_API_KEY=your-openrouter-api-key-here

# Optional: Massive (Polygon.io) API key for real market data
# If not set, the built-in market simulator is used (recommended for most users)
MASSIVE_API_KEY=

# Optional: Set to "true" for deterministic mock LLM responses (testing)
LLM_MOCK=false

# Optional: override the Massive poll interval in seconds (default 15)
MASSIVE_POLL_SECONDS=15

# Optional: seed the market simulator for deterministic output (tests/dev)
SIM_SEED=

# Optional: override how often the SSE stream flushes the cache, in seconds (default 0.5)
SSE_PUSH_SECONDS=0.5
3 changes: 2 additions & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ jobs:
# Optional: Add claude_args to customize behavior and configuration
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
# or https://code.claude.com/docs/en/cli-reference for available options
# claude_args: '--allowed-tools Bash(gh pr:*)'
# claude_args: '--allowed-tools Bash(gh pr *)'

claude_args: "--model claude-opus-4-8"
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,8 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/

# FinAlly runtime database (volume-mounted; keep the directory, ignore the file)
db/*.db
db/*.db-journal
!db/.gitkeep
59 changes: 0 additions & 59 deletions backend/CLAUDE.md

This file was deleted.

55 changes: 0 additions & 55 deletions backend/README.md

This file was deleted.

1 change: 0 additions & 1 deletion backend/app/__init__.py

This file was deleted.

23 changes: 0 additions & 23 deletions backend/app/market/__init__.py

This file was deleted.

75 changes: 0 additions & 75 deletions backend/app/market/cache.py

This file was deleted.

31 changes: 0 additions & 31 deletions backend/app/market/factory.py

This file was deleted.

57 changes: 0 additions & 57 deletions backend/app/market/interface.py

This file was deleted.

Loading