Initial commit

This commit is contained in:
Blake Ridgway 2025-07-12 10:06:52 -05:00
commit ceda8957b7
14 changed files with 408 additions and 0 deletions

42
.gitignore vendored Normal file
View file

@ -0,0 +1,42 @@
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
env/
venv/
.venv/
*/.pytest_cache/
.mypy_cache/
.dmypy.json
celerybeat-schedule
.vscode/
# Flask-specific
instance/
.flaskenv
# Database
# For SQLite, the database file
siem.db
*.sqlite3
*.db
*.db-* # for potential Flask-SQLAlchemy-generated temp files
# Logs
*.log
logs/
run.log
# IDEs
.idea/ # PyCharm
*.iml # PyCharm
*.ipr # PyCharm
*.iws # PyCharm
.vscode/ # VS Code (if not managed by specific user settings)
# OS generated files
.DS_Store
.Trashes
Thumbs.db