28 lines
296 B
Plaintext
28 lines
296 B
Plaintext
# Ignore test data
|
|
images/
|
|
import/
|
|
|
|
# Ignore Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignore environment files
|
|
.env
|
|
.env.*
|
|
|
|
# Ignore virtual environments
|
|
env/
|
|
venv/
|
|
|
|
# Ignore Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore DB files
|
|
app.db
|
|
|
|
# Ignore Docker related files
|
|
.dockerignore
|
|
docker-compose.yml |