refactor: move files to git_monitor/ directory and add run.py

This commit is contained in:
2026-03-06 19:30:27 +01:00
parent d2556bf656
commit 1b6c7dcc01
9 changed files with 13 additions and 0 deletions

13
run.py Normal file
View File

@@ -0,0 +1,13 @@
import sys
import os
# Ensure the git_monitor directory is in the search path
current_dir = os.path.dirname(os.path.abspath(__file__))
git_monitor_dir = os.path.join(current_dir, "git_monitor")
sys.path.insert(0, git_monitor_dir)
from main import Application
if __name__ == "__main__":
app = Application()
app.run()