-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
38 lines (38 loc) · 1.21 KB
/
.gitignore
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
# ignore VS Code settings
.vscode
# Ignore model files
*.pkl
# ignore Python caches
__pycache__
.pytest_cache
# ignore virtual environment
venv
# ignore the configuration file (avoid pushing keys or passwords to version control)
config.py
config.sh
# ignore local testing Unix socket folder
cloudsql
# ignore google cloud sql proxy
cloud_sql_proxy
# ignore Firebase Admin SDK credentials
firebase-admin-sdk-credentials.json
# ignore generated code coverage files
.coverage
htmlcov
# ignore Mac backup stuff
.DS_Store
# ignore spatial data files that change daily
analysis/data/spatial/outputs/ndfd_sco_data/*.tif
# ignore tabular data files that change daily
analysis/data/tabular/outputs/cronjob_data/*.err
analysis/data/tabular/outputs/cronjob_data/*.out
analysis/data/tabular/outputs/ndfd_sco_data/*.csv
analysis/data/tabular/outputs/terminal_data/*.txt
analysis/data/tabular/outputs/ndfd_sco_data/ndfd_sco_data_raw/*.csv
analysis/data/tabular/outputs/ndfd_sco_data/lease_calcs/*.csv
analysis/data/tabular/outputs/ndfd_sco_data/cmu_calcs/*.csv
analysis/data/tabular/outputs/ndfd_sco_data_appended/*.csv
# if these aren't being ignored then use git rm --cached <file path with wildcard>
# ignore r history file
.Rhistory
.Rproj.user