23 lines
354 B
Plaintext
23 lines
354 B
Plaintext
# Ignore git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore virtual environments
|
|
venv/
|
|
env/
|
|
|
|
# Ignore data (it will be mounted as a volume instead)
|
|
data/
|
|
|
|
# Ignore local secrets (they will be mounted or passed as env vars)
|
|
.env
|
|
credentials.json
|
|
token.json
|
|
|
|
# Ignore cache
|
|
__pycache__
|
|
*.pyc
|
|
|
|
# Ignore local libs (dependencies are installed in the image)
|
|
libs/
|
|
token.json |