Spaces:
Running
on
Zero
Running
on
Zero
File size: 471 Bytes
318cea6 3292cf5 318cea6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# Ignore everything
*
# But not these files...
!.gitignore
!*.py
!requirements.txt
!README.md
# Even if they are in subdirectories
!*/
# Ignore Python cache files even though we allow .py files
__pycache__/
*.py[cod]
*$py.class
# Ignore virtual environments
venv/
env/
.env/
.venv/
openalex_env_map/
# Ignore IDE specific files
.idea/
.vscode/
*.swp
*.swo
# Ignore downloaded model files and data
*.pkl
*.pt
*.pth
*.bin
*.h5
# Ignore generated files
static/
*.log
|