This repository has no description
0

Configure Feed

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

fix venv path

+1 -1
+1 -1
src/main.py
··· 115 115 116 116 def setup_cron_job(): 117 117 # Get the path to the virtual environment's python interpreter 118 - venv_python = os.path.join(BASE_DIR, "venv", "bin", "python3") # Update this if your venv is elsewhere 118 + venv_python = os.path.join(BASE_DIR, ".venv", "bin", "python3") # Update this if your venv is elsewhere 119 119 120 120 # Check if the cron job already exists 121 121 cron = CronTab(user=True)