-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (38 loc) · 686 Bytes
/
.gitignore
File metadata and controls
46 lines (38 loc) · 686 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
# OS / Editors
.DS_Store
.idea/
.vscode/
.history/
# Python
__pycache__/
*.py[cod]
.pytest_cache/
.mypy_cache/
.coverage
coverage.xml
.python-version
# Env
*.env
airflow/.env
.env
airflow/.env.bak.*
.venv/
.env
**/.venv/
# Logs
logs/
# dbt local venv (inside project)
data_pipeline/.venv/
data_pipeline/target/
data_pipeline/dbt_packages/
scripts/**/.venv/
# dbt artifacts (if created at repo root accidentally)
target/
dbt_packages/
# Private doc (Chinese version for internal use)
# README_Fox.md
# Great Expectations heavy artifacts
great_expectations/uncommitted/validations/**
great_expectations/uncommitted/data_docs/**
# Local secrets (e.g. Snowflake key pair)
secrets/*