-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
73 lines (60 loc) · 978 Bytes
/
Copy path.gitignore
File metadata and controls
73 lines (60 loc) · 978 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Byte-compiled / cache files
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
# Virtual environments
.venv/
env/
venv/
# Jupyter notebooks checkpoints
.ipynb_checkpoints/
# Environment variables
.env
*.env
# MacOS and Linux trash files
.DS_Store
.Trash-*
# VSCode settings
.vscode/
# System log files
*.log
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
# Streamlit cache
.streamlit/
# Data files (customize as needed)
*.csv
!clean_jobs.csv # <-- keep this one
# Docker-related artifacts
**/__pycache__/
**/*.pyc
*.pid
*.sock
# Ignore everything in data/ and app/ but allow Dockerfile and requirements
data/*
!data/Dockerfile
!data/requirements.txt
!data/web.py
app/*
!app/Dockerfile
!app/requirements.txt
!app/data_app.py
# Allow specific files in root
!/docker-compose.yml
!/clean_jobs.csv
!/Screencast from 2025-04-23 12-27-18.webm
!/log.py
!/db_connect.py
!.gitignore
!data_app.py
!convert to csv.py