gni commited on
Commit ·
edbc2ca
1
Parent(s): 1344296
chore: update gitignore for Hugging Face Space
Browse files- .gitignore +16 -67
.gitignore
CHANGED
|
@@ -1,71 +1,20 @@
|
|
| 1 |
-
#
|
| 2 |
-
__pycache__/
|
| 3 |
-
*.py[cod]
|
| 4 |
-
*$py.class
|
| 5 |
-
*.so
|
| 6 |
-
.Python
|
| 7 |
-
env/
|
| 8 |
-
build/
|
| 9 |
-
develop-eggs/
|
| 10 |
-
dist/
|
| 11 |
-
downloads/
|
| 12 |
-
eggs/
|
| 13 |
-
.eggs/
|
| 14 |
-
lib/
|
| 15 |
-
lib64/
|
| 16 |
-
parts/
|
| 17 |
-
sdist/
|
| 18 |
-
var/
|
| 19 |
-
wheels/
|
| 20 |
-
*.egg-info/
|
| 21 |
-
.installed.cfg
|
| 22 |
-
*.egg
|
| 23 |
-
api/venv/
|
| 24 |
-
.pytest_cache/
|
| 25 |
-
.tox/
|
| 26 |
-
.coverage
|
| 27 |
-
.cache
|
| 28 |
-
nosetests.xml
|
| 29 |
-
coverage.xml
|
| 30 |
-
*.cover
|
| 31 |
-
.hypothesis/
|
| 32 |
-
|
| 33 |
-
# --- Node.js ---
|
| 34 |
node_modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
ui/node_modules/
|
| 36 |
-
npm-debug.log*
|
| 37 |
-
yarn-debug.log*
|
| 38 |
-
yarn-error.log*
|
| 39 |
-
.pnpm-debug.log*
|
| 40 |
-
.npm
|
| 41 |
ui/dist/
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
# --- Docker ---
|
| 45 |
-
.dockerignore
|
| 46 |
-
|
| 47 |
-
# --- Environment Secrets ---
|
| 48 |
-
.env
|
| 49 |
-
.env.local
|
| 50 |
-
.env.development.local
|
| 51 |
-
.env.test.local
|
| 52 |
-
.env.production.local
|
| 53 |
-
*.secret
|
| 54 |
-
|
| 55 |
-
# --- OS / IDE ---
|
| 56 |
-
.DS_Store
|
| 57 |
-
.DS_Store?
|
| 58 |
-
._*
|
| 59 |
-
.Spotlight-V100
|
| 60 |
-
.Trashes
|
| 61 |
-
ehthumbs.db
|
| 62 |
-
Thumbs.db
|
| 63 |
-
.idea/
|
| 64 |
-
.vscode/
|
| 65 |
-
*.swp
|
| 66 |
-
*.swo
|
| 67 |
|
| 68 |
-
#
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Local development files
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
node_modules/
|
| 3 |
+
dist/
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
.git/
|
| 7 |
+
.gitignore
|
| 8 |
ui/node_modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
ui/dist/
|
| 10 |
+
api/__pycache__/
|
| 11 |
+
api/.pytest_cache/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
+
# Development tools to exclude from HF Space
|
| 14 |
+
docker-compose.yml
|
| 15 |
+
docker-compose.prod.yml
|
| 16 |
+
Makefile
|
| 17 |
+
LICENSE
|
| 18 |
+
api/Dockerfile
|
| 19 |
+
ui/Dockerfile
|
| 20 |
+
api/tests/
|