') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - syntaxmage05/tracker · GitHub
Skip to content

Repository files navigation

Tracker

Tracker is a Ruby on Rails application for running team standups with clear visibility into daily progress, upcoming work, and blockers.

Overview

Tracker helps teams stay aligned by combining:

  • Daily standup logging with structured entries (Did, Todo, and Blocker).
  • Team-level views to review member updates by day.
  • Account + role-based access for multi-user organizations.
  • Automated reminders and recaps using Sidekiq + Sidekiq Cron jobs.

The app is built on Rails 8 with PostgreSQL, Hotwire, and Sidekiq.

Features

  • Authentication and invitation flow with Devise / Devise Invitable.
  • Account and team management.
  • Standup creation/editing with nested task items.
  • Activity feed focused on the current user’s standup history.
  • Background job scheduling for reminder and recap workflows.

Tech Stack

  • Backend: Ruby on Rails 8
  • Database: PostgreSQL
  • Frontend: Hotwire (Turbo + Stimulus), Tailwind CSS
  • Background Jobs: Sidekiq + Sidekiq Cron
  • Testing: RSpec, Factory Bot, Capybara

Prerequisites

Before running Tracker locally, install:

  • Ruby (version compatible with the project’s Gemfile)
  • Bundler
  • PostgreSQL
  • Redis (required for Sidekiq)

Local Setup

  1. Clone the repository

    git clone https://github.com/syntaxmage05/tracker.git
    cd tracker
  2. Install dependencies

    bundle install
  3. Prepare the database

    bin/rails db:prepare
  4. Run the development environment

    bin/dev

bin/dev starts:

  • Rails web server
  • Tailwind watcher
  • Sidekiq worker (via Procfile.dev)

Useful Commands

# Run the test suite
bundle exec rspec
# Run static analysis
bin/brakeman
bin/rubocop
# Open Sidekiq dashboard (when app is running)# http://localhost:3000/sidekiq

Background Jobs

Tracker schedules recurring jobs every 15 minutes for:

  • Team reminder discovery (Reminders::FindTeamsJob)
  • Team recap discovery (Recaps::FindTeamsJob)

These schedules are configured through Sidekiq Cron during Sidekiq server startup.

Core Routes

  • / → personal activity view
  • /t → teams
  • /s → standups
  • /sidekiq → Sidekiq Web UI

Project Structure

app/
controllers/ # HTTP endpoints and request flow
models/ # Domain models (standups, tasks, teams, accounts, users)
services/ # Service objects for business workflows
views/ # ERB views and UI templates
config/
routes.rb # Route definitions
initializers/ # Framework and integration setup (Sidekiq, Devise, etc.)
spec/ # RSpec test suite

Deployment

The repository includes Docker and Kamal configuration files for containerized deployment workflows.

Contributing

  1. Create a feature branch.
  2. Make and test your changes.
  3. Open a pull request with a clear summary and validation steps.

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages