Deployment
GitHub Pages
The repository deploys two static pages to GitHub Pages:
demo:
https://andalenavals.github.io/agentic-trading-bots/docs:
https://andalenavals.github.io/agentic-trading-bots/docs/
The GitHub Actions workflow builds both pieces into one artifact:
npm cinpm run typechecknpm run lintnpm run test:pyGITHUB_PAGES=true npm run build(this runs preprocessing first)sphinx-build -b html docs out/docsupload
outwithactions/upload-pages-artifactdeploy with
actions/deploy-pages
Local Build
Build the demo. The build command runs preprocessing first:
npm run build
Build the GitHub Pages version:
GITHUB_PAGES=true npm run build
Build the Sphinx docs:
npm run docs:install
npm run docs:build