claude unstested update for moving from wp to project -> wp to task
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
import logging
|
||||
|
||||
from pymongo import MongoClient
|
||||
from zoneinfo import ZoneInfo
|
||||
|
||||
# Logging configuration
|
||||
logging.basicConfig(
|
||||
@@ -9,7 +10,7 @@ logging.basicConfig(
|
||||
format="%(asctime)s %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s",
|
||||
datefmt="%Y-%m-%d %H:%M:%S",
|
||||
)
|
||||
# 2) Get your module’s logger and bump it to DEBUG
|
||||
# 2) Get your module's logger and bump it to DEBUG
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.DEBUG)
|
||||
|
||||
@@ -25,3 +26,9 @@ db = client.deskmeter
|
||||
switches = db.switch
|
||||
states = db.state
|
||||
tasks = db.task
|
||||
|
||||
# Application configuration
|
||||
desktops = ("Plan", "Think", "Work", "Other", "Away", "Work", "Work", "Work")
|
||||
unlabeled = "Away"
|
||||
timezone = ZoneInfo("America/Argentina/Buenos_Aires")
|
||||
task_file = "/home/mariano/LETRAS/adm/task/main"
|
||||
|
||||
Reference in New Issue
Block a user