iamspruce commited on
Commit
f24a55f
·
1 Parent(s): fa26f0f

Add .gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +100 -0
.gitignore ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python #
2
+ ############
3
+ __pycache__/
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ .Python
8
+ env/
9
+ venv/
10
+ *.env # Local environment variable files (e.g., for API keys)
11
+ .venv/ # Another common virtual environment name
12
+
13
+ # Byte-code files
14
+ *.py[cod]
15
+
16
+ # C extensions
17
+ *.so
18
+
19
+ # Distribution / packaging
20
+ .Python
21
+ build/
22
+ develop-eggs/
23
+ dist/
24
+ eggs/
25
+ .eggs/
26
+ lib/
27
+ lib64/
28
+ parts/
29
+ sdist/
30
+ var/
31
+ wheels/
32
+ share/python-wheels/
33
+ *.egg-info/
34
+ .installed.cfg
35
+ *.memo
36
+ *.reshape
37
+
38
+ # Installer logs
39
+ *.log
40
+ *.egg
41
+
42
+ # Unit test / coverage reports
43
+ .coverage
44
+ .tox/
45
+ .nox/
46
+ .hypothesis/
47
+ htmlcov/
48
+ .pytest_cache/
49
+
50
+ # PyInstaller / cx_Freeze / py2app / etc.
51
+ __pyinstaller__/
52
+ *.spec
53
+ _MEI*/
54
+ build/
55
+ dist/
56
+
57
+ # Jupyter Notebook #
58
+ ####################
59
+ .ipynb_checkpoints
60
+
61
+ # IDEs and Editors #
62
+ ####################
63
+ .vscode/ # VS Code settings
64
+ .idea/ # IntelliJ IDEA / PyCharm settings
65
+ *.swp # Vim swap files
66
+ *~ # Backup files from editors
67
+ *.sublime-project
68
+ *.sublime-workspace
69
+
70
+ # OS generated files #
71
+ ######################
72
+ .DS_Store # macOS
73
+ .Trashes # macOS
74
+ Thumbs.db # Windows
75
+ ehthumbs.db # Windows
76
+ *.stackdump # Linux stack dumps
77
+
78
+ # Database files #
79
+ ##################
80
+ *.sqlite3
81
+ *.db
82
+
83
+ # Specific to your project's caches
84
+ # Hugging Face models cache (typically outside project, but good to include if you ever set HF_HOME within project)
85
+ # On your local machine, the actual cache is usually in ~/.cache/huggingface/
86
+ # If you ever mount a volume to /cache directly inside your project, you'd ignore that.
87
+ # For typical usage, it's outside the repo.
88
+
89
+ # LanguageTool download cache
90
+ # If you explicitly set LANGUAGE_TOOL_DOWNLOAD_DIR to be inside your project,
91
+ # e.g., to something like ./languagetool_cache, then you would uncomment/add that:
92
+ # languagetool_cache/
93
+ # On your local machine, this is often in ~/.cache/languagetool/ or ~/.languagetool.org/
94
+
95
+ # If you specifically download models/data files INTO your project folder
96
+ # (e.g., for SpaCy models if not in standard spaCy data dir)
97
+ # spacy_models/
98
+
99
+ # Log files created by your application
100
+ *.log