Skip to content

Commit

Permalink
Code - Update .gitignore and .dockerignore (#2797)
Browse files Browse the repository at this point in the history
  • Loading branch information
kruton authored Nov 20, 2024
1 parent 6084b0f commit d9f9fa7
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 30 deletions.
47 changes: 30 additions & 17 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
.git
.github
changedetectionio/processors/__pycache__
changedetectionio/api/__pycache__
changedetectionio/model/__pycache__
changedetectionio/blueprint/price_data_follower/__pycache__
changedetectionio/blueprint/tags/__pycache__
changedetectionio/blueprint/__pycache__
changedetectionio/blueprint/browser_steps/__pycache__
changedetectionio/fetchers/__pycache__
changedetectionio/tests/visualselector/__pycache__
changedetectionio/tests/restock/__pycache__
changedetectionio/tests/__pycache__
changedetectionio/tests/fetchers/__pycache__
changedetectionio/tests/unit/__pycache__
changedetectionio/tests/proxy_list/__pycache__
changedetectionio/__pycache__
# Git
.git/
.gitignore

# GitHub
.github/

# Byte-compiled / optimized / DLL files
**/__pycache__
**/*.py[cod]

# Caches
.mypy_cache/
.pytest_cache/
.ruff_cache/

# Distribution / packaging
build/
dist/
*.egg-info*

# Virtual environment
.env
.venv/
venv/

# IntelliJ IDEA
.idea/

# Visual Studio
.vscode/
40 changes: 27 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
__pycache__
.idea
*.pyc
datastore/url-watches.json
datastore/*
__pycache__
.pytest_cache
build
dist
venv
test-datastore/*
test-datastore
test-memory.log
# Byte-compiled / optimized / DLL files
**/__pycache__
**/*.py[cod]

# Caches
.mypy_cache/
.pytest_cache/
.ruff_cache/

# Distribution / packaging
build/
dist/
*.egg-info*

# Virtual environment
.env
.venv/
venv/

# IDEs
.idea
.vscode/settings.json

# Datastore files
datastore/
test-datastore/

# Memory consumption log
test-memory.log

0 comments on commit d9f9fa7

Please sign in to comment.