1
0
Fork
You've already forked fitpub
0
forked from fitpub/fitpub
A federated social application for sports activities and open source Strava alternative with ActivityPub support.
  • Java 70.8%
  • HTML 22.2%
  • JavaScript 5.1%
  • CSS 1.8%
Marcus Fihlon 7af00ed0c9 feat: activity owner should see all data of his activities unfiltered ( #358 , #359 )
Assisted-by: OpenAI Codex
Signed-off-by: Marcus Fihlon <marcus@fihlon.swiss>
Reviewed-on: fitpub/fitpub#359 
2026年06月21日 08:31:41 +02:00
.forgejo/workflows deps: use JDK 25 LTS for building and deploying closes #189 ( #211 ) 2026年06月04日 20:50:17 +02:00
.mvn/wrapper deps: use JDK 25 LTS for building and deploying closes #189 ( #211 ) 2026年06月04日 20:50:17 +02:00
docker refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
docs refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
src feat: activity owner should see all data of his activities unfiltered ( #358 , #359 ) 2026年06月21日 08:31:41 +02:00
.env.example feat(logging): persist and rotate production logs closes #183 ( #232 ) 2026年06月06日 09:51:03 +02:00
.gitignore chore(gitignore): ignore coding assistant artifacts ( #40 ) 2026年05月05日 11:34:10 +02:00
.sdkmanrc deps: use JDK 25 LTS for building and deploying closes #189 ( #211 ) 2026年06月04日 20:50:17 +02:00
CHANGELOG.md docs: update changelog for bugfix release 1.1.1 2026年06月19日 09:40:53 +02:00
cliff.toml chore(changelog): add git-cliff configuration 2026年06月04日 12:24:55 +02:00
CONTAINERS.md feat: make Hikari pool settings configurable via environment variables closes #295 ( #297 ) 2026年06月10日 22:18:21 +02:00
CONTRIBUTING.md deps: use JDK 25 LTS for building and deploying closes #189 ( #211 ) 2026年06月04日 20:50:17 +02:00
docker-compose.federation-test.yml refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
docker-compose.yml refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
Dockerfile refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
LICENSE Create LICENSE 2026年05月05日 18:14:39 +02:00
mvnw build: add Maven Wrapper ( #27 ) 2026年04月29日 09:18:03 +02:00
mvnw.cmd build: add Maven Wrapper ( #27 ) 2026年04月29日 09:18:03 +02:00
pom.xml refactor: improve docker image layering and size ( #336 , #340 ) 2026年06月20日 09:37:30 +02:00
README.md docs: correct spring boot version mentioned in readme ( #313 ) 2026年06月13日 17:21:23 +02:00

FitPub

FitPub is a self-hosted fitness tracking platform for the Fediverse. It lets people upload workout files, review their activities with maps and metrics, and share them through ActivityPub instead of locking them into a closed social network.

The project is built for people who want to keep control of their training data while still participating in a social graph that reaches Mastodon-compatible platforms and other ActivityPub servers.

What FitPub does

  • Imports activity files from GPS devices and training apps
  • Supports FIT and GPX uploads
  • Publishes activities to followers over ActivityPub
  • Provides public, followers-only, and private visibility modes
  • Applies privacy zones to protect sensitive start and end locations
  • Shows maps, metrics, timelines, and profile pages in a server-rendered web UI
  • Includes analytics such as summaries, personal records, achievements, training load, and heatmaps
  • Supports batch imports from ZIP archives

Why this project exists

Most fitness platforms combine activity storage, analysis, and social distribution inside one vendor-controlled product. FitPub separates those concerns. You can run your own instance, keep your own data, and still share workouts with people on the wider Fediverse.

Stack

FitPub is built with:

  • Java 25
  • Spring Boot 4
  • Thymeleaf
  • PostgreSQL with PostGIS
  • Flyway
  • ActivityPub-compatible federation

Project layout

  • src/main/java/ - application code
  • src/main/resources/templates/ - server-rendered views
  • src/main/resources/static/ - frontend assets
  • src/main/resources/db/migration/ - Flyway database migrations
  • src/test/ - automated tests
  • CONTAINERS.md - container deployment notes for Docker- or Podman-based setups

Deployment

FitPub is intended to be self-hosted.

For container-based deployment, see CONTAINERS.md. Legal page files are loaded from /app/pages inside the app container.

Verified signup

Local account signup uses a two-step email verification flow:

  1. The user submits username, email address, password, and profile details.
  2. FitPub sends a numeric verification code by email.
  3. The user enters that code on the registration page.
  4. Only after successful verification is the real user account created and signed in.

Pending registrations are stored separately from real accounts until verification succeeds.

Local development

For local development, a disposable SMTP sink such as MailPit works well. The dev profile already uses localhost:1025 for SMTP, so the default MailPit container setup works without additional mail configuration. Only set the mail environment variables if you want to override that default.

docker run --rm -p 1025:1025 -p 8025:8025 axllent/mailpit
podman run --rm -p 1025:1025 -p 8025:8025 docker.io/axllent/mailpit

For automated tests, GreenMail is a good fit when end-to-end mail assertions are needed.

Current scope

The repository already includes:

  • local accounts and authentication
  • activity upload and post-processing
  • federation endpoints and delivery logic
  • social features such as follows, comments, likes, notifications, and timelines
  • analytics and heatmap views
  • privacy-zone filtering for track data

Status

FitPub is an actively developed public project. The feature set is already substantial, but the codebase is still evolving and interface details may change as the platform matures.

Contributing

Issues and pull requests are welcome.

For contributor workflow, local setup, build steps, and test execution, see CONTRIBUTING.md.

License

No license file is currently present in this repository. Until one is added, reuse terms are not explicitly defined.