Skip to content

Releases: task-run/taskrun

TaskRun v0.0.1

27 Oct 20:44

Choose a tag to compare

Docker Image

Version: v0.0.1
Image: filipeai/taskrun:0.0.1

Pull the image:

docker pull filipeai/taskrun:0.0.1
# or
docker pull filipeai/taskrun:latest

Run with external PostgreSQL and Redis:

docker run -p 7890:7890 \
  -e DATABASE_URL="postgresql://user:pass@host:5432/taskrun" \
  -e REDIS_URL="redis://host:6379" \
  -e JWT_SECRET="your-secret-key-min-32-chars" \
  -e API_KEY_SECRET="your-api-key-secret" \
  -e TASKRUN_API_KEY="your-global-api-key" \
  -e TASKRUN_API_URL="https://your-domain.com" \
  filipeai/taskrun:0.0.1

Latest Commit

SHA: bbff973

feat: create truly visual cron builder with plain language controls

No cron knowledge required:
- Click frequency type: Minutes, Hours, Daily, Weekly, Monthly, Custom
- Visual controls appear based on selection:
  - Minutes: 'Every X minutes' (number input)
  - Hours: 'Every X hours at minute Y'
  - Daily: 'At HH:MM' (time picker)
  - Weekly: 'On [day dropdown] at HH:MM'
  - Monthly: 'On day X of month at HH:MM'
  - Custom: Manual cron input for advanced users
- Cron builds automatically in background
- Result shown in preview box
- Compact, clean UX