Quick Start
Get UTM running in minutes.
Prerequisites
- Node.js 20+
- Docker and Docker Compose
- A TradeStation account (for live trading)
1. Clone the Repository
git clone https://github.com/josephdaw/utm-platform.git
cd utm-platform/main
2. Start Infrastructure
docker compose up -d postgres redis
3. Install Dependencies
npm install
4. Configure Environment
cp .env.example .env
# Edit .env with your settings
5. Run Migrations
npm run db:migrate
6. Start Development Server
npm run dev
The application will be available at:
- Web UI: http://localhost:3000
- API: http://localhost:3001