This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix

+2 -2
+1 -1
README.md
··· 91 91 - Authenticate using the AT Protocol. 92 92 - Update the Bluesky avatar accordingly. 93 93 94 - Execution logs will be displayed directly in the console, and a log file will be created in the `~/logs/bluesky-avatar-updater` directory. The log file will rotate when it reaches 10 MB, keeping up to 5 backup log files, each named with a timestamp for each execution. 94 + Execution logs will be displayed directly in the console, and a log file will be created in the `./logs/` directory. The log file will rotate when it reaches 10 MB, keeping up to 5 backup log files, each named with a timestamp for each execution. 95 95 96 96 ## Automating with Cron (Linux) 97 97
+1 -1
src/main.py
··· 26 26 SCRIPT_PATH = os.path.abspath(__file__) 27 27 28 28 # Define the log file directory and log file path 29 - log_dir = os.path.expanduser("~/logs/bluesky-avatar-updater") 29 + log_dir = os.path.join(BASE_DIR, "logs") 30 30 if not os.path.exists(log_dir): 31 31 os.makedirs(log_dir) 32 32