Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.

Latest commit

 

History

History
39 lines (26 loc) · 626 Bytes

File metadata and controls

39 lines (26 loc) · 626 Bytes

Environment set up

  1. Clone the repository:
git clone <repository-url>
cd crypto-algo-trader
  1. Install mise

        a. Make sure you've configured it to work with IDEs

  1. Install dependencies
mise install
mise setup
  1. Install recommended VSCode extensions

That's it! Your environment is set up :)

Run code quality checks:

# Format code
mise run format

# Check linting
mise run lint

# Type checking
mise run typecheck

# Run tests
mise run test