Initial v1 autonomous alpaca llm trading bot with dark dashboard

This commit is contained in:
2026-02-25 18:51:24 -08:00
commit cce199d73a
10 changed files with 399 additions and 0 deletions

6
run.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn app:app --host ${APP_HOST:-0.0.0.0} --port ${APP_PORT:-8089}