add ai similarity
Browse files- app/.gitignore +65 -0
app/.gitignore
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ------------------------
|
| 2 |
+
# Python
|
| 3 |
+
# ------------------------
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.py[cod]
|
| 6 |
+
*$py.class
|
| 7 |
+
|
| 8 |
+
# Virtual environments
|
| 9 |
+
.venv/
|
| 10 |
+
env/
|
| 11 |
+
venv/
|
| 12 |
+
ENV/
|
| 13 |
+
|
| 14 |
+
# Distribution / packaging
|
| 15 |
+
build/
|
| 16 |
+
dist/
|
| 17 |
+
*.egg-info/
|
| 18 |
+
.eggs/
|
| 19 |
+
|
| 20 |
+
# ------------------------
|
| 21 |
+
# Test / Coverage
|
| 22 |
+
# ------------------------
|
| 23 |
+
.pytest_cache/
|
| 24 |
+
.tox/
|
| 25 |
+
.coverage
|
| 26 |
+
coverage.xml
|
| 27 |
+
htmlcov/
|
| 28 |
+
|
| 29 |
+
# Ignore ONLY top-level tests folder (outside app/)
|
| 30 |
+
# Remove this line if you want to keep tests in Git
|
| 31 |
+
/tests/
|
| 32 |
+
|
| 33 |
+
# ------------------------
|
| 34 |
+
# OS Specific
|
| 35 |
+
# ------------------------
|
| 36 |
+
# macOS
|
| 37 |
+
.DS_Store
|
| 38 |
+
.AppleDouble
|
| 39 |
+
.Icon?
|
| 40 |
+
|
| 41 |
+
# Windows
|
| 42 |
+
Thumbs.db
|
| 43 |
+
ehthumbs.db
|
| 44 |
+
Desktop.ini
|
| 45 |
+
|
| 46 |
+
# ------------------------
|
| 47 |
+
# IDE / Editor
|
| 48 |
+
# ------------------------
|
| 49 |
+
# VS Code
|
| 50 |
+
.vscode/
|
| 51 |
+
|
| 52 |
+
# PyCharm / IntelliJ
|
| 53 |
+
.idea/
|
| 54 |
+
|
| 55 |
+
# Others
|
| 56 |
+
*.swp
|
| 57 |
+
*.swo
|
| 58 |
+
|
| 59 |
+
# ------------------------
|
| 60 |
+
# Environment / Config
|
| 61 |
+
# ------------------------
|
| 62 |
+
.env
|
| 63 |
+
.env.local
|
| 64 |
+
.env.*
|
| 65 |
+
scraper.log
|