Deadlyelder / endurain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Endurain is a self-hosted fitness tracking service that operates much like Strava but allows users to have complete control over their data and the hosting environment. The application's frontend is built using a combination of PHP, HTML, basic JavaScript, and Bootstrap CSS. On the backend, it leverages Python FastAPI and stravalib for seamless integration with Strava. The MariaDB database engine is employed to efficiently store and manage user data, while Jaeger is used for basic observability.

To deploy Endurain, Docker images are readily available, and a comprehensive example can be found in the "docker-compose.yml" file provided. Configuration is facilitated through environment variables, ensuring flexibility and ease of customization.

As a non-professional developer, my journey with Endurain involved learning and implementing new technologies and concepts, with invaluable assistance from ChatGPT. The primary motivation behind this project was to gain hands-on experience and expand my understanding of modern development practices.

If you have any recommendations or insights on improving any aspect of Endurain, whether related to technology choices, user experience, or any other relevant area, I would greatly appreciate your input. The goal is to create a reliable and user-friendly fitness tracking solution that caters to the needs of individuals who prefer self-hosted applications. Your constructive feedback will undoubtedly contribute to the refinement of Endurain.

Default credentials are:

  • User: admin
  • Password: admin

Currently the service supports:

  • Multi-user
  • Create/edit/delete users
  • Basic admin and regular users profiles that adapt the interface
  • Import activities using .gpx files
  • Connect with Strava and retrieve activities from Strava
  • Feed with user activities, current user week stats and month stats
  • Feed with followers activities
  • Basic activity privacy
  • Activity page with more in depth info of the activity
  • Delete activities
  • Create/edit/delete gear (wetsuit, bycicle and running shoes)
  • Add/edit/delete activity gear
  • User page with user stats and user activities per week
  • Follow user basic implementation
  • Multi-language support, but currently only English is available

To do features (not by order):

  • Retrieve gear from Strava
  • Default gear for activity type
  • Track gear usage
  • Gear components logic for component usage tracking
  • Comments and likes logic for activities
  • Notifications logic
  • Activity Pub integration?

Frontend

Table bellow shows supported environemnt variables. Variables marked with optional "No" should be set to avoid errors.

Environemnt variable Default value Optional
BACKEND_PROTOCOL http Yes
BACKEND_HOST backend Yes

Frontend dependencies:

  • php:8.3-apache
  • User avatars create using DiceBear (https://www.dicebear.com) avataaars style.
  • Bootstrap CSS v5.3.2
  • leaflet v1.7.1
  • fontawesome icons free version
  • Logo created using Canvas
  • https://geocode.maps.co/ for reverse Geocode logic on activity parsing

Backend

Everytime the backend starts it will check if the user with the username "admin" is created. If not the user is created. Because of this if you want to create another admin user and not use the default one, I suggest to disable the default one. A better approach to this will be assessed in the future.

Table bellow shows supported environemnt variables. Variables marked with optional "No" should be set to avoid errors.

Environemnt variable Default value Optional
DB_HOST mariadb Yes
DB_PORT 3306 Yes
DB_USER gearguardian Yes
DB_PASSWORD changeme No
DB_DATABASE gearguardian Yes
SECRET_KEY changeme No
ALGORITHM HS256 Yes
ACCESS_TOKEN_EXPIRE_MINUTES 30 Yes
STRAVA_CLIENT_ID changeme No
STRAVA_CLIENT_SECRET changeme No
STRAVA_AUTH_CODE changeme No
JAEGER_ENABLED true Yes
JAEGER_PROTOCOL http Yes
JAEGER_HOST jaeger Yes
JAGGER_PORT 4317 Yes
STRAVA_DAYS_ACTIVITIES_ONLINK 30 Yes

Table bellow shows the obligatory environemnt variables for mariadb container. You should set them based on what was also set for backend container.

Environemnt variable Default value Optional
MYSQL_ROOT_PASSWORD changeme No
MYSQL_DATABASE gearguardian No
MYSQL_USER gearguardian No
MYSQL_PASSWORD changeme No

Python backend dependencies used:

  • python:3.11
  • fastapi
  • pydantic
  • uvicorn
  • python-dotenv
  • sqlalchemy
  • mysqlclient
  • python-jose[cryptography]
  • passlib[bcrypt]
  • apscheduler
  • requests
  • stravalib
  • opentelemetry-sdk
  • opentelemetry-instrumentation-fastapi
  • opentelemetry.exporter.otlp
  • https://geocode.maps.co/ for reverse Geocode logic on activity parsing

Strava integration

For Strava integration API endpoint must be available to the Internet. You will also need to create a API Application using a Strava account -> more info here https://developers.strava.com/docs/getting-started/

About

License:GNU General Public License v3.0


Languages

Language:PHP 73.0%Language:Python 27.0%