Skip to content

Commit

Permalink
Cleanup files (#250)
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Katiyar <[email protected]>
  • Loading branch information
ankatiyar authored Nov 7, 2024
1 parent 7a263e9 commit 9499a2c
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 11 deletions.
10 changes: 9 additions & 1 deletion astro-airflow-iris/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ data/**
!.gitkeep

# also keep the example dataset
!data/01_raw/*.csv
!data/01_raw/iris.csv

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +154,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
11 changes: 9 additions & 2 deletions databricks-iris/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ data/**
!.gitkeep

# also keep the example dataset
!data/01_raw/*.csv
!data/01_raw/iris.csv

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -137,7 +142,6 @@ celerybeat-schedule

# Environments
.env
.envrc
.venv
env/
venv/
Expand All @@ -150,3 +154,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pandas-viz/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pandas/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pyspark-viz/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*
14 changes: 12 additions & 2 deletions spaceflights-pyspark/{{ cookiecutter.repo_name }}/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ data/**
# also keep all .gitkeep files
!.gitkeep

# keep also the example dataset
!data/01_raw/*
# also keep the example dataset
!data/01_raw/companies.csv
!data/01_raw/reviews.csv
!data/01_raw/shuttles.xlsx

# ignore kedro-viz metadata
.viz

# ignore file based logs
*.log

##########################
# Common files
Expand Down Expand Up @@ -149,3 +156,6 @@ venv.bak/

# mypy
.mypy_cache/

# mlflow local runs
mlruns/*

0 comments on commit 9499a2c

Please sign in to comment.