Add external session preference #3

Merged
kbe merged 5 commits from develop into main 2025-07-20 15:32:47 +00:00
2 changed files with 17 additions and 2 deletions
Showing only changes of commit a388b808f0 - Show all commits

2
.gitignore vendored
View File

@@ -1,8 +1,6 @@
.env
log/
!log/.gitkeep
# Configuration files
preferred_sessions.json
# Created by https://www.toptal.com/developers/gitignore/api/python
# Edit at https://www.toptal.com/developers/gitignore?templates=python

17
preferred_sessions.json Normal file
View File

@@ -0,0 +1,17 @@
[
{
"day_of_week": 2,
"start_time": "18:30",
"session_name_contains": "CONDITIONING"
},
{
"day_of_week": 4,
"start_time": "17:00",
"session_name_contains": "WEIGHTLIFTING"
},
{
"day_of_week": 5,
"start_time": "12:30",
"session_name_contains": "HYROX"
}
]