Inital Commit

This commit is contained in:
2025-10-29 11:29:20 -04:00
commit eafa1a5567
2 changed files with 1403 additions and 0 deletions

39
.gitignore vendored Normal file
View File

@@ -0,0 +1,39 @@
# Ignore all files by default
*
# Whitelist specific files to track
!time_tracker.py
# Keep this gitignore file
!.gitignore
# Ignore common Python artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
# Ignore virtual environments
venv/
env/
ENV/
# Ignore IDE files
.vscode/
*.swp
*.swo
*~
# Ignore temp files
*.tmp
*.bak
# Ignore log files
*.log
# Ignore configuration and data files
*.json
*.csv
!time_tracker.py