Favicon of Tracks

Tracks

Implement the Getting Things Done methodology with flexible task views, context tagging, and progress tracking. Manage projects efficiently across any device.

Take control of your daily workflow with a powerful, open-source application designed specifically for the Getting Things Done (GTD) methodology. Whether managing personal errands or complex office projects, this platform provides the flexibility to organize tasks exactly how you work best. Sort actions by context or project, and keep your focus sharp by hiding items you are not ready to tackle yet.

Enjoy a seamless organizational experience with these core features:

  • Flexible task views: Sort actions by context, project, or custom tags to maintain focus.
  • Traffic-light due dates: Quickly identify urgent tasks with color-coded deadlines.
  • Tickler file system: Schedule future actions to appear only when you need to deal with them.
  • Comprehensive statistics: Measure your productivity and identify your most effective working periods.

Access tasks anywhere through a lightweight mobile interface or integrate with other tools using the robust API.

Directory Structure

tracks
data
assets
mysql
.env
docker-compose.yml

docker-compose.yml

services:
  tracks:
    image: tracksapp/tracks:latest
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - DATABASE_URL=mysql2://tracks:${DB_PASSWORD}@db/tracks
      - SECRET_KEY_BASE=${SECRET_KEY_BASE}
      - RAILS_SERVE_STATIC_FILES=true
      - TZ=UTC
    depends_on:
      - db
    volumes:
      - ./data/assets:/usr/src/app/public/assets

  db:
    image: mysql:5.7
    restart: unless-stopped
    environment:
      - MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
      - MYSQL_DATABASE=tracks
      - MYSQL_USER=tracks
      - MYSQL_PASSWORD=${DB_PASSWORD}
    volumes:
      - ./data/mysql:/var/lib/mysql

.env

DB_PASSWORD=your_secure_db_password
DB_ROOT_PASSWORD=your_secure_root_password
SECRET_KEY_BASE=your_generated_secret_key_base_string
Categories:

Share:

Ad
Favicon

 

  
 

Similar to Tracks

Favicon

 

  
  
Favicon

 

  
  
Favicon