feat: preferred sessions are now external

This commit is contained in:
kbe
2025-07-20 17:28:05 +02:00
parent c437f908ac
commit a388b808f0
2 changed files with 17 additions and 2 deletions

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"
}
]