SparkyFitness gives you a complete workout journal built for every training style — from barbell strength programs and HIIT circuits to long-distance cardio and recreational activities. Log each session with as much or as little detail as you like: a simple calorie-and-duration entry for a walk, or a full set-by-set breakdown with weights and reps for a lifting session. Every workout entry feeds into your progress charts and calorie burn totals, making it easy to see how your training evolves over time.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/CodeWithCJ/SparkyFitness/llms.txt
Use this file to discover all available pages before exploring further.
Logging an Exercise
Adding a workout entry follows the same pattern as logging food — navigate to the diary date, open the exercise section, and pick an activity.Open the Exercise Section
Go to the Diary page for the target date and scroll to the Exercise section, then click Add Exercise.
Find an Exercise
Search for the exercise by name. Results come from the built-in database, Free Exercise DB, Wger integration, and any custom exercises you have added.
Enter Activity Details
Depending on the exercise type, fill in the relevant fields:
- Strength exercises: number of sets, reps per set, and weight per set
- Cardio exercises: duration (minutes), distance, and average heart rate
- General activities: duration in minutes and estimated calories burned
Add Notes or a Photo
Optionally add a text note or attach a workout photo. Photos are stored on your own server and served back through the authenticated
/uploads/exercise_entries/ path.| Field | Description |
|---|---|
exercise_id | UUID of the exercise from the database |
entry_date | Date of the workout (YYYY-MM-DD) |
duration_minutes | Total workout duration |
calories_burned | Calories expended |
sets | Array of { reps, weight, duration } objects |
reps | Total reps (when not using per-set tracking) |
weight | Weight used (when not using per-set tracking) |
distance | Distance covered (cardio) |
avg_heart_rate | Average heart rate during the session |
notes | Free-text notes |
image_url | Path to an attached workout photo |
Exercise Database
SparkyFitness ships with a built-in exercise library and supports two additional external databases that can be enabled in your server settings.Built-in Database
A curated set of common strength, cardio, and flexibility exercises available out of the box with no external connections required.
Free Exercise DB
An open-source exercise dataset with hundreds of exercises categorized by muscle group and equipment type. Enable it in Settings → Exercise Databases.
Wger Integration
Connect to a Wger instance (self-hosted or the public API) to access its exercise library. Exercises are searched and fetched on demand. Configure the Wger base URL in Settings → Integrations.
Custom Exercises
If an exercise isn’t in any of the available databases, you can create your own. Custom exercises are stored privately in your SparkyFitness instance.Enter Exercise Details
Provide a name, description, primary muscle group, and equipment type. These fields are used to filter and display the exercise.
Upload an Image (Optional)
Attach a reference image for the exercise. Images are uploaded as
multipart/form-data and stored under the server’s uploads/ directory.Custom exercises are scoped to your user account. They are not shared with other users on the same SparkyFitness instance unless you are managing a family member’s profile.
Workout Presets
A workout preset is a saved collection of exercises with pre-filled sets, reps, and weights that represents a routine you perform repeatedly — for example, “Push Day A” or “5km Easy Run”. Presets let you log an entire familiar workout in a few taps.Creating a Workout Preset
Creating a Workout Preset
- Navigate to Settings → Workouts → Presets.
- Click New Preset and give it a name.
- Add each exercise, specifying the default sets, reps, and weight or duration.
- Save the preset. It is now available from the diary’s Add Exercise panel under the Presets tab.
Logging from a Preset
Logging from a Preset
- In the diary’s exercise section, choose Add from Preset.
- Select the preset from your list.
- Review and adjust any values (e.g., today you lifted heavier), then confirm.
- All exercises in the preset are added as individual diary entries, linked to the preset for progress tracking.
Workout Plan Templates
While presets handle single-session routines, Workout Plan Templates let you structure a multi-day training week. A plan template defines which workouts are scheduled for which days of the week, and SparkyFitness can guide you through each session as the days arrive.Create a Plan Template
Go to Settings → Workouts → Plan Templates and click New Plan. Give the plan a name (e.g., “Push/Pull/Legs 3-Day Split”).
Assign Workouts to Days
For each day of the week, assign a workout preset or define exercises directly. Days without a scheduled workout can be left as rest days.
Activate the Plan
Set the plan as active and choose a start date. SparkyFitness will present the day’s scheduled workout when you open the diary on each training day.
Calorie Calculation
SparkyFitness estimates exercise calories burned using a combination of approaches:Manual Entry
You can always enter calories burned directly. This is the most accurate method when your equipment or a wearable gives you a precise figure.
MET-Based Estimation
For activities in the exercise database, SparkyFitness uses Metabolic Equivalent of Task (MET) values combined with your body weight and session duration to estimate calorie expenditure.
Heart Rate Import
If you sync data from a wearable via the iOS Shortcut or Android app, the calorie figure reported by your device’s sensor is imported directly into the exercise entry.
Adaptive TDEE Integration
Exercise calories feed into the Adaptive TDEE engine, which factors your real-world calorie burn into personalized daily calorie recommendations over time.