Description
Make TradeClaw deployable with a single Docker command, no cloning required:
docker run -p 3000:3000 ghcr.io/naimkatiman/tradeclaw
Why
The #1 friction point for star-worthy projects is "how fast can I try it?" A one-liner Docker run command dramatically lowers the barrier. Projects like Plausible, Umami, and Uptime Kuma all do this.
Acceptance Criteria
Tech Notes
- Existing
Dockerfile and docker-compose.yml are a good starting point
- Use
output: 'standalone' (already configured in next.config)
- Target image size: < 200MB
Getting Started
git clone https://github.com/naimkatiman/tradeclaw.git
cd tradeclaw && npm install && npm run dev
Difficulty: Easy-Medium | Area: DevOps (Docker)
Description
Make TradeClaw deployable with a single Docker command, no cloning required:
Why
The #1 friction point for star-worthy projects is "how fast can I try it?" A one-liner Docker run command dramatically lowers the barrier. Projects like Plausible, Umami, and Uptime Kuma all do this.
Acceptance Criteria
Tech Notes
Dockerfileanddocker-compose.ymlare a good starting pointoutput: 'standalone'(already configured in next.config)Getting Started
Difficulty: Easy-Medium | Area: DevOps (Docker)