### Professional Time Tracking & Project Management for Teams
**Track time. Manage projects. Generate invoices. All in one place.**
[๐ Quick Start](#-quick-start) โข [โจ Features](#-features) โข [๐ธ Screenshots](#-screenshots) โข [๐ Getting Started](docs/GETTING_STARTED.md) โข [๐ Documentation](docs/) โข [๐ณ Deploy](#-deployment)
---
## ๐ฏ What is TimeTracker?
TimeTracker is a **self-hosted, web-based time tracking application** designed for freelancers, teams, and businesses who need professional time management with complete control over their data.
**Perfect for:**
- ๐ผ **Freelancers** tracking billable hours across multiple clients
- ๐ฅ **Small Teams** managing projects and tracking productivity
- ๐ข **Agencies** needing detailed reporting and client billing
- ๐ **Privacy-focused organizations** wanting self-hosted solutions
---
## โจ Features
### โฑ๏ธ **Smart Time Tracking**
- **One-Click Timers** โ Start tracking with a single click
- **Persistent Timers** โ Timers keep running even after browser closes
- **Idle Detection** โ Automatic pause after configurable idle time
- **Manual Entry** โ Add historical time entries with notes and tags
- **Bulk Time Entry** โ Create multiple entries for consecutive days with weekend skipping
- **Time Entry Templates** โ Save and reuse common time entries for faster logging
- **Calendar View** โ Visual calendar interface for viewing and managing time entries
- **Real-time Updates** โ See live timer updates across all devices via WebSocket
### ๐ **Project & Task Management**
- **Unlimited Projects & Tasks** โ Organize work your way
- **Client Management** โ Store client details, contacts, and billing rates
- **Task Board** โ Visual task management with priorities and assignments
- **Kanban Board** โ Drag-and-drop task management with customizable columns
- **Status Tracking** โ Monitor progress from to-do to completion
- **Estimates vs Actuals** โ Track project budgets and burn rates
- **Task Comments** โ Collaborate with threaded comments on tasks
- **Markdown Support** โ Rich text formatting in project and task descriptions
### ๐งพ **Professional Invoicing**
- **Generate from Time** โ Convert tracked hours to invoices automatically
- **Custom Line Items** โ Add manual items for expenses or services
- **Tax Calculation** โ Automatic tax calculations with configurable rates
- **PDF Export** โ Professional PDF invoice generation with branding
- **Status Tracking** โ Track draft, sent, paid, and overdue invoices
- **Company Branding** โ Add logos and custom company information
- **Expense Integration** โ Include tracked expenses in invoices
### ๐ฐ **Financial Management**
- **Expense Tracking** โ Track business expenses with receipts and categories
- **Payment Tracking** โ Monitor invoice payments and payment methods
- **Reimbursement Management** โ Handle expense approvals and reimbursements
- **Billable Expenses** โ Mark expenses as billable and add to invoices
- **Multi-Currency** โ Support for multiple currencies with conversion
### ๐ **Analytics & Reporting**
- **Visual Dashboards** โ Charts and graphs for quick insights
- **Detailed Reports** โ Time breakdown by project, user, or date range
- **CSV Export** โ Export data for external analysis
- **Billable vs Non-billable** โ Separate tracking for accurate billing
- **Custom Date Ranges** โ Flexible reporting periods
- **Saved Filters** โ Save frequently used report filters for quick access
- **User Analytics** โ Individual performance metrics and productivity insights
### ๐ **Multi-User & Security**
- **Role-Based Access Control** โ Granular permissions system with custom roles
- **User Management** โ Add team members and manage access
- **Self-Hosted** โ Complete control over your data
- **Flexible Authentication** โ Username-only, OIDC/SSO (Azure AD, Authelia, etc.)
- **Session Management** โ Secure cookies and session handling
- **Profile Pictures** โ Users can upload profile pictures
- **API Tokens** โ Generate tokens for API access and integrations
### โจ๏ธ **Productivity Features**
- **Command Palette** โ Keyboard-driven navigation with shortcuts (press `?`)
- **Keyboard Shortcuts** โ Navigate and execute actions without the mouse
- **Quick Search** โ Fast search across projects, tasks, clients, and more (Ctrl+K)
- **Email Notifications** โ Configurable email alerts for tasks, invoices, and more
- **Weekly Summaries** โ Optional weekly time tracking summaries via email
### ๐ ๏ธ **Technical Excellence**
- **Docker Ready** โ Deploy in minutes with Docker Compose
- **Database Flexibility** โ PostgreSQL for production, SQLite for testing
- **Responsive Design** โ Works perfectly on desktop, tablet, and mobile
- **Real-time Sync** โ WebSocket support for live updates
- **Automatic Backups** โ Scheduled database backups (configurable)
- **Progressive Web App** โ Install as a mobile app on phones and tablets
- **Monitoring Stack** โ Built-in Prometheus, Grafana, Loki for observability
- **Internationalization** โ Multiple language support (i18n)
---
## ๐ธ Screenshots
### ๐ Dashboard โ Your Command Center

*Start timers, view recent entries, and see your productivity at a glance*
---
### ๐ Simple Login & User Management
*Simple username-based authentication and customizable user profiles with avatar support*
---
### ๐ Projects & Tasks โ Stay Organized
*Manage multiple projects and break them down into actionable tasks*
---
### ๐ Kanban Board โ Visual Task Management

*Drag-and-drop task management with customizable columns and visual workflow*
---
### โฑ๏ธ Time Tracking โ Flexible & Powerful
*Manual time entry and reusable templates for faster logging*
---
### ๐งพ Invoicing & Clients โ Professional Billing
*Generate invoices from tracked time and manage client relationships*
---
### ๐ Reports & Analytics โ Data-Driven Insights
*Comprehensive reporting and user analytics for informed decisions*
---
### ๐ ๏ธ Admin Dashboard โ Complete Control

*Manage users, configure settings, and monitor system health*
---
### ๐ฏ Easy Creation โ Streamlined Workflows
*Simple, intuitive forms for creating projects, tasks, and clients*
---
## ๐ Quick Start
### Option 1: Docker with HTTPS (Recommended for Production)
Get TimeTracker running in under 2 minutes with automatic HTTPS:
```bash
# Clone the repository
git clone https://github.com/drytrix/TimeTracker.git
cd TimeTracker
# Create your environment file from the template
cp env.example .env
# IMPORTANT: Edit .env and set a strong SECRET_KEY
# Generate one with: python -c "import secrets; print(secrets.token_hex(32))"
# Also set your timezone (TZ) and currency (CURRENCY)
nano .env # or use any text editor
# Start with Docker Compose (includes HTTPS via nginx with self-signed cert)
docker-compose up -d
# Access at https://localhost
# Your browser will warn about the self-signed certificate - that's normal
```
**First login creates the admin account** โ just enter your username!
**๐ See the complete setup guide:** [`docs/DOCKER_COMPOSE_SETUP.md`](docs/DOCKER_COMPOSE_SETUP.md)
### Option 2: Docker with Plain HTTP (Development/Testing)
For local development or testing without HTTPS:
```bash
# Clone and navigate to the repository
git clone https://github.com/drytrix/TimeTracker.git
cd TimeTracker
# Use the example compose file that exposes HTTP directly
docker-compose -f docker-compose.example.yml up -d
# Access at http://localhost:8080
```
### Option 3: Quick Test with SQLite
Want to try it out without any configuration?
```bash
# Clone the repository
git clone https://github.com/drytrix/TimeTracker.git
cd TimeTracker
# Start with the local test configuration (uses SQLite, no PostgreSQL)
docker-compose -f docker-compose.local-test.yml up --build
# Access at http://localhost:8080
```
No database setup or .env file needed โ perfect for quick testing!
---
## ๐ก Use Cases
### For Freelancers
Track time across multiple client projects, generate professional invoices, and understand where your time goes. TimeTracker helps you bill accurately and identify your most profitable clients.
### For Teams
Assign tasks, track team productivity, and generate reports for stakeholders. See who's working on what, identify bottlenecks, and optimize team performance.
### For Agencies
Manage multiple clients and projects simultaneously. Track billable hours, generate client invoices, and analyze project profitability โ all in one place.
### For Personal Projects
Even if you're not billing anyone, understanding where your time goes is valuable. Track personal projects, hobbies, and learning activities to optimize your time.
---
## ๐ Why TimeTracker?
| Feature | TimeTracker | Traditional Time Trackers |
|---------|-------------|---------------------------|
| **Self-Hosted** | โ
Complete data control | โ Cloud-only, subscription fees |
| **Open Source** | โ
Free to use & modify | โ Proprietary, locked features |
| **Persistent Timers** | โ
Runs server-side | โ Browser-dependent |
| **Docker Ready** | โ
Deploy anywhere | โ ๏ธ Complex setup |
| **Invoicing Built-in** | โ
Track to bill workflow | โ Requires integration |
| **No User Limits** | โ
Unlimited users | โ Per-user pricing |
---
## ๐ Documentation
Comprehensive documentation is available in the [`docs/`](docs/) directory:
### Getting Started
- **[๐ Getting Started Guide](docs/GETTING_STARTED.md)** โ Complete beginner's guide (โญ Start here!)
- **[Installation Guide](docs/DOCKER_PUBLIC_SETUP.md)** โ Detailed setup instructions
- **[Requirements](docs/REQUIREMENTS.md)** โ System requirements and dependencies
- **[Troubleshooting](docs/DOCKER_STARTUP_TROUBLESHOOTING.md)** โ Common issues and solutions
- **[CSRF Token Issues](CSRF_TROUBLESHOOTING.md)** โ Fix "CSRF token missing or invalid" errors
- **[CSRF IP Access Fix](CSRF_IP_ACCESS_FIX.md)** โ ๐ฅ Fix cookies not working when accessing via IP address
- **[HTTPS Auto-Setup](README_HTTPS_AUTO.md)** โ ๐ Automatic HTTPS at startup (one command!)
- **[HTTPS Manual Setup (mkcert)](README_HTTPS.md)** โ ๐ Manual HTTPS with no certificate warnings
### Features
- **[Task Management](docs/TASK_MANAGEMENT_README.md)** โ Break projects into manageable tasks
- **[Invoice System](docs/INVOICE_FEATURE_README.md)** โ Generate professional invoices
- **[Client Management](docs/CLIENT_MANAGEMENT_README.md)** โ Manage client relationships
- **[Calendar Features](docs/CALENDAR_FEATURES_README.md)** โ Calendar and bulk entry features
- **[Bulk Time Entry](docs/BULK_TIME_ENTRY_README.md)** โ Create multiple time entries at once
- **[Command Palette](docs/COMMAND_PALETTE_USAGE.md)** โ Keyboard shortcuts for power users
- **[Expense Tracking](docs/EXPENSE_TRACKING.md)** โ Track business expenses (if available)
- **[Role-Based Permissions](docs/PERMISSIONS.md)** โ Granular access control (if available)
### Technical Documentation
- **[Project Structure](docs/PROJECT_STRUCTURE.md)** โ Codebase architecture
- **[Database Migrations](migrations/README.md)** โ Database schema management
- **[Version Management](docs/VERSION_MANAGEMENT.md)** โ Release and versioning
- **[CSRF Configuration](docs/CSRF_CONFIGURATION.md)** โ Security and CSRF token setup for Docker
- **[CI/CD Documentation](docs/cicd/)** โ Continuous integration setup
### Contributing
- **[Contributing Guidelines](docs/CONTRIBUTING.md)** โ How to contribute
- **[Code of Conduct](docs/CODE_OF_CONDUCT.md)** โ Community standards
---
## ๐ณ Deployment
### Local Development
```bash
# Start with HTTPS (recommended)
docker-compose up -d
# Or use plain HTTP for development
docker-compose -f docker-compose.example.yml up -d
```
### Production Deployment
#### Option 1: Build from Source
```bash
# Clone the repository
git clone https://github.com/drytrix/TimeTracker.git
cd TimeTracker
# Configure your .env file
cp env.example .env
# Edit .env with production settings:
# - Set a strong SECRET_KEY: python -c "import secrets; print(secrets.token_hex(32))"
# - Configure TZ (timezone) and CURRENCY
# - Set PostgreSQL credentials (POSTGRES_PASSWORD, etc.)
# Start the application
docker-compose up -d
```
#### Option 2: Use Pre-built Images
```bash
# Use the remote compose file with published images
docker-compose -f docker-compose.remote.yml up -d
```
> **โ ๏ธ Security Note:** Always set a unique `SECRET_KEY` in production! See [CSRF Configuration](docs/CSRF_CONFIGURATION.md) for details.
### Raspberry Pi Deployment
TimeTracker runs perfectly on Raspberry Pi 4 (2GB+ RAM):
```bash
# Same Docker commands work on ARM architecture
docker-compose up -d
```
### HTTPS Configuration
#### Automatic HTTPS (Easiest)
```bash
# Uses self-signed certificates (generated automatically)
docker-compose up -d
# Access at https://localhost (accept browser warning)
```
#### Manual HTTPS with mkcert (No Browser Warnings)
```bash
# Use mkcert for locally-trusted certificates
docker-compose -f docker-compose.https-mkcert.yml up -d
```
**๐ See [HTTPS Setup Guide](README_HTTPS.md) for detailed instructions**
### Monitoring & Analytics
```bash
# Deploy with full monitoring stack (Prometheus, Grafana, Loki)
docker-compose up -d
# Grafana: http://localhost:3000
# Prometheus: http://localhost:9090
```
**๐ See [Deployment Guide](docs/DOCKER_PUBLIC_SETUP.md) for detailed instructions**
**๐ See [Docker Compose Setup](docs/DOCKER_COMPOSE_SETUP.md) for configuration options**
---
## ๐ง Configuration
TimeTracker is highly configurable through environment variables. For a comprehensive list and recommended values, see:
- [`docs/DOCKER_COMPOSE_SETUP.md`](docs/DOCKER_COMPOSE_SETUP.md)
- [`env.example`](env.example)
Common settings:
```bash
# Timezone and locale
TZ=America/New_York
CURRENCY=USD
# Timer behavior
SINGLE_ACTIVE_TIMER=true
IDLE_TIMEOUT_MINUTES=30
ROUNDING_MINUTES=1
# User management
ADMIN_USERNAMES=admin,manager
ALLOW_SELF_REGISTER=false
# Security (production)
SECRET_KEY=your-secure-random-key
SESSION_COOKIE_SECURE=true
```
---
## ๐ Analytics & Telemetry
TimeTracker includes **optional** analytics and monitoring features to help improve the application and understand how it's being used. All analytics features are:
- โ
**Disabled by default** โ You must explicitly opt-in
- โ
**Privacy-first** โ No personally identifiable information (PII) is collected
- โ
**Self-hostable** โ Run your own analytics infrastructure
- โ
**Transparent** โ All data collection is documented
### What We Collect (When Enabled)
#### 1. **Structured Logs** (Always On, Local Only)
- Request logs and error messages stored **locally** in `logs/app.jsonl`
- Used for troubleshooting and debugging
- **Never leaves your server**
#### 2. **Prometheus Metrics** (Always On, Self-Hosted)
- Request counts, latency, and performance metrics
- Exposed at `/metrics` endpoint for your Prometheus server
- **Stays on your infrastructure**
#### 3. **Error Monitoring** (Optional - Sentry)
- Captures uncaught exceptions and performance issues
- Helps identify and fix bugs quickly
- **Opt-in:** Set `SENTRY_DSN` environment variable
#### 4. **Product Analytics** (Optional - PostHog)
- Tracks feature usage and user behavior patterns with advanced features:
- **Person Properties**: Role, auth method, login history
- **Feature Flags**: Gradual rollouts, A/B testing, kill switches
- **Group Analytics**: Segment by version, platform, deployment
- **Rich Context**: Browser, device, environment on every event
- **Opt-in:** Set `POSTHOG_API_KEY` environment variable
- See [POSTHOG_ADVANCED_FEATURES.md](POSTHOG_ADVANCED_FEATURES.md) for complete guide
#### 5. **Installation Telemetry** (Optional, Anonymous)
- Sends anonymous installation data via PostHog with:
- Anonymized fingerprint (SHA-256 hash, cannot be reversed)
- Application version
- Platform information
- **No PII:** No IP addresses, usernames, or business data
- **Opt-in:** Set `ENABLE_TELEMETRY=true` and `POSTHOG_API_KEY` environment variables
### How to Enable Analytics
```bash
# Enable Sentry error monitoring (optional)
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id
SENTRY_TRACES_RATE=0.1 # 10% sampling for performance traces
# Enable PostHog product analytics (optional)
POSTHOG_API_KEY=your-posthog-api-key
POSTHOG_HOST=https://app.posthog.com
# Enable anonymous telemetry (optional, uses PostHog)
ENABLE_TELEMETRY=true
TELE_SALT=your-unique-salt
APP_VERSION=1.0.0
```
### Self-Hosting Analytics
You can self-host all analytics services for complete control:
```bash
# Use docker-compose with monitoring profile
docker-compose --profile monitoring up -d
```
This starts:
- **Prometheus** โ Metrics collection and storage
- **Grafana** โ Visualization dashboards
- **Loki** (optional) โ Log aggregation
- **Promtail** (optional) โ Log shipping
### Privacy & Data Protection
> **Telemetry**: TimeTracker can optionally send anonymized usage data to help improve the product (errors, feature usage, install counts). All telemetry is **opt-in**. No personal data is collected. To disable telemetry, set `ENABLE_TELEMETRY=false` or simply don't set the environment variable (disabled by default).
**What we DON'T collect:**
- โ Email addresses or usernames
- โ IP addresses
- โ Project names or descriptions
- โ Time entry notes or client data
- โ Any personally identifiable information (PII)
**Your rights:**
- ๐ฅ **Access**: View all collected data
- โ๏ธ **Rectify**: Correct inaccurate data
- ๐๏ธ **Erase**: Delete your data at any time
- ๐ค **Export**: Export your data in standard formats
**๐ See [Privacy Policy](docs/privacy.md) for complete details**
**๐ See [Analytics Documentation](docs/analytics.md) for configuration**
**๐ See [Events Schema](docs/events.md) for tracked events**
---
## ๐ฃ๏ธ Roadmap
### Planned Features
- ๐ **PDF Invoice Templates** โ Professional PDF generation
- ๐ง **Email Integration** โ Send invoices to clients
- ๐ฑ **Progressive Web App** โ Install as mobile app
- ๐ **Recurring Invoices** โ Automate recurring billing
- ๐จ **Custom Themes** โ Personalize your interface
- ๐ **API Extensions** โ RESTful API for integrations
- ๐ **Advanced Analytics** โ More charts and insights
### Recently Added
- โ
**Invoice Generation** โ Complete invoicing system with PDF export
- โ
**Task Management** โ Full task tracking and management with Kanban board
- โ
**Command Palette** โ Keyboard-driven navigation (press `?`)
- โ
**Calendar View** โ Visual time entry calendar
- โ
**Bulk Time Entry** โ Create multiple entries for consecutive days
- โ
**Time Entry Templates** โ Save and reuse common time entries
- โ
**Expense Tracking** โ Track business expenses with receipts
- โ
**Payment Tracking** โ Monitor invoice payments
- โ
**Saved Filters** โ Save frequently used report filters
- โ
**Task Comments** โ Collaborate with comments on tasks
- โ
**Role-Based Permissions** โ Granular access control system
- โ
**OIDC/SSO Authentication** โ Enterprise authentication support
- โ
**Markdown Support** โ Rich text in descriptions
---
## ๐ค Contributing
We welcome contributions! Whether it's:
- ๐ **Bug Reports** โ Help us identify issues
- ๐ก **Feature Requests** โ Share your ideas
- ๐ **Documentation** โ Improve our docs
- ๐ป **Code Contributions** โ Submit pull requests
**๐ See [Contributing Guidelines](docs/CONTRIBUTING.md) to get started**
---
## ๐ License
TimeTracker is licensed under the **GNU General Public License v3.0**.
This means you can:
- โ
Use it commercially
- โ
Modify and adapt it
- โ
Distribute it
- โ
Use it privately
**See [LICENSE](LICENSE) for full details**
---
## ๐ Support
- ๐ **Documentation**: Check the [`docs/`](docs/) directory
- ๐ **Bug Reports**: [Open an issue](https://github.com/drytrix/TimeTracker/issues)
- ๐ฌ **Discussions**: [GitHub Discussions](https://github.com/drytrix/TimeTracker/discussions)
- ๐ง **Contact**: [Create an issue](https://github.com/drytrix/TimeTracker/issues) for support
---
## โญ Star Us!
If TimeTracker helps you track your time better, consider giving us a star on GitHub! It helps others discover the project.
**[โญ Star on GitHub](https://github.com/drytrix/TimeTracker)**
---
**Built with โค๏ธ for the time-tracking community**