add gitignore file

This commit is contained in:
BuildTools 2024-08-04 14:26:30 -07:00
parent 8aedb5fc3f
commit 41ebb7d609
1 changed files with 15 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
# Ignore __pycache__ directories
__pycache__/
# Ignore everything
*
# But allow these file types
!*.py
!*.bat
!*.txt
!*.md
!LICENSE
# Don't ignore .gitignore
!.gitignore