Skip to content

The open-source, AI-powered endurance training platform.

License

Notifications You must be signed in to change notification settings

openathleteorg/openathlete

OpenAthlete Logo

OpenAthlete

The open-source, AI-powered endurance training platform.
Learn more Β»

Discord Β· Website Β· Documentation Β· API Docs Β· Issues

Github Stars License Commits-per-month iOS App API Docs Documentation Discord

About the Project

Training infrastructure for absolutely everyone

The open-source, AI-powered endurance training platform. You are in charge of your own data, training plans, and performance optimization.

Training platforms are awesome. They make our athletic lives easier. We use them for tracking workouts, planning training sessions, and monitoring progress. However, most tools are very limited in terms of control, customization, and data ownership.

That's where OpenAthlete comes in. Self-hosted or cloud-hosted. Privacy-first by design. API-driven and ready to be deployed on your own domain. Full control of your training data and AI-powered insights.

Key Features

  • πŸ€– AI-Powered Training - Generate workouts, analyze performance, and get intelligent training suggestions
  • πŸ“Š Comprehensive Tracking - Track workouts, visualize progress, and monitor fatigue metrics (CTL/ATL/TSB)
  • πŸ”— Device Integrations - Connect with Strava, Garmin, Suunto, Polar, Coros, and more
  • 🎀 Voice Feedback - Record post-session voice notes analyzed by AI for tone, stress, and motivation
  • πŸ‘¨β€πŸ« Coach Mode - Hybrid coaching system where coaches can validate AI adjustments
  • πŸ“± Mobile Apps - Native iOS (on TestFlight) and Android (coming soon) apps for on-the-go training management
  • πŸ”’ Privacy-First - Your data stays yours. Self-hostable with full control
  • 🌐 Open Source - Transparent, extensible, and community-driven

Comparison

Feature 🟒 OpenAthlete πŸ”΅ TrainingPeaks 🟠 Strava
Business Model Open Source / SaaS Proprietary Proprietary
Self-Hostable βœ… Yes ❌ No ❌ No
AI Planning βœ… Adaptive & Custom ⚠️ Basic ❌ No
Privacy βœ… You own the data ❌ They own the data ❌ They sell the data
Cost Free (Self-hosted) $19.99/mo $11.99/mo

Recognition

OpenAthlete is built by athletes, for athletes. We're proud to be part of the open-source community and grateful for all contributors who help make this platform better.

Built With

Getting Started

To get a local copy up and running, please follow these simple steps.

Prerequisites

Here is what you need to be able to run OpenAthlete.

  • Node.js (Version: >=22.14.0) - We recommend using nvm for version management
  • pnpm (Version: >=9.x) - Fast, disk space efficient package manager
  • PostgreSQL (Version: >=13.x) - Database
  • Git - Version control

If you want to enable AI features, you may need to obtain API credentials. More details can be found in the documentation.

Development

Setup

  1. Clone the repo into a public GitHub repository (or fork https://github.com/openathleteorg/openathlete/fork):

    git clone https://github.com/openathleteorg/openathlete.git
    cd openathlete
  2. Install packages with pnpm

    pnpm install
  3. Set up your environment variables

    • Frontend: Copy apps/web/.env.example to apps/web/.env and update with your configuration
    • Backend: Copy apps/api/.env.example to apps/api/.env and update with your configuration
    • At minimum, you'll need:
      • DATABASE_URL - PostgreSQL connection string
      • JWT_SECRET - Secret key for JWT tokens (generate with openssl rand -base64 32)
      • VITE_API_URL - Backend API URL (for frontend)
  4. Setup Node version

    If your Node version does not meet the project's requirements, use nvm:

    nvm use

    You first might need to install the specific version and then use it:

    nvm install && nvm use
  5. Build shared packages

    pnpm shared build
  6. Set up the database using Prisma

    In a development environment, run:

    pnpm database run db:migrate dev

    In a production environment, run:

    pnpm database run db:deploy
  7. Run (in development mode)

    pnpm dev

    This will start:

    • Frontend at http://localhost:5173
    • Backend API at http://localhost:3000

Development Tips

  1. Run type checking before committing:

    pnpm tsc:check
  2. Format and lint your code:

    pnpm format:write
    pnpm lint:fix

Upgrading from earlier versions

  1. Pull the current version:

    git pull
  2. Check if dependencies got added/updated/removed

    pnpm install
  3. Apply database migrations by running one of the following commands:

    In a development environment, run:

    pnpm database run db:migrate dev

    In a production environment, run:

    pnpm database run db:deploy
  4. Check for .env variables changes

    Compare your .env files with the .env.example files to see if new variables were added.

  5. Start the server. In a development environment, just do:

    pnpm dev

    For a production build, run for example:

    pnpm build
    pnpm start
  6. Enjoy the new version.

Deployment

Docker

OpenAthlete can be deployed using Docker. Docker configurations are provided in the repository.

Requirements

Make sure you have docker & docker compose installed on the server / system.

Running OpenAthlete with Docker Compose

  1. Clone the repository:
   git clone https://github.com/openathleteorg/openathlete.git
cd openathlete
  1. Prepare your configuration: Copy .env.example files and update them:

    cp apps/api/.env.example apps/api/.env

cp apps/web/.env.example apps/web/.env


Update the appropriate values in your `.env` files, then proceed.

3. Start OpenAthlete via docker compose:

```bash
docker compose up -d
  1. Open a browser to your configured URL. The first time you run OpenAthlete, you'll need to create your first user.

Updating OpenAthlete

  1. Stop the OpenAthlete stack

    docker compose down
  2. Pull the latest changes

    git pull
  3. Update env vars as necessary.

  4. Re-start the OpenAthlete stack

    docker compose up -d

Manual Deployment

For detailed deployment instructions, see our self-hosting documentation.

Backend (NestJS)

  1. Build the application:

    cd apps/api
    pnpm install
    pnpm build
  2. Set up environment variables in .env

  3. Run database migrations:

    pnpm database run db:deploy
  4. Start the server:

    pnpm start:prod

Frontend (React + Vite)

  1. Build the application:

    cd apps/web
    pnpm install
    pnpm build
  2. Serve the built files using a web server (nginx, Apache, etc.)

    Example nginx configuration:

    server {
        listen 80;
        server_name your-domain.com;
    
        root /path/to/apps/web/dist;
        index index.html;
    
        location / {
            try_files $uri $uri/ /index.html;
        }
    }

Environment Variables

Backend Required Variables

DATABASE_URL="postgresql://user:password@host:5432/openathlete"
JWT_SECRET="your-secret-key"
NODE_ENV="production"

Frontend Required Variables

VITE_API_URL="https://api.your-domain.com"

For a complete list of environment variables, see the .env.example files in each app directory.

Roadmap

OpenAthlete is actively developed. Here's what's coming next:

  • 🧩 Modular Training Logic - Custom goals, coach import, and flexible training methodologies
  • πŸ“ˆ Enhanced Dashboards - Intuitive data visualizations and performance analytics
  • πŸ”— More Integrations - Wahoo, Coros, Zwift, Oura, and more
  • πŸ“… Weekly Training View - Better calendar and planning interface
  • πŸƒ Advanced AI Features - More intelligent training suggestions and injury prevention
  • πŸ“± Mobile App Enhancements - Improved mobile experience and offline support

See our GitHub Issues for a detailed list of proposed features and known issues.

License

Distributed under the AGPLv3 License. See LICENSE for more information.

Contributing

Please see our contributing guide.

Good First Issues

We have a list of good first issues that contain small features and bugs which have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.

Help Wanted

We also have help wanted issues that are perfect for contributors looking to make a bigger impact.

Contributors

Translations

Don't code but still want to contribute? Join our Discord community and help translate OpenAthlete into your language.

Repo Activity

Acknowledgements

Special thanks to these amazing projects which help power OpenAthlete:


Made with ❀️ by athletes, for athletes