This message was deleted.
# ask-for-help
s
This message was deleted.
s
Is building putting anything inside the BentoML folder? We've found that if there are a lot of files being included our current solution is very slow at loading them all. It's something that's been on our to-do list to fix for a while.
s
Yes it’s putting everything in the repo (it’s a very small test project BTW) - maybe I need to exclude
/bentoml
itself? Maybe it’s recursively building and that’s causing the problem.
Is this the right way to do it?
Copy code
exclude:
- "bentoml/"
Or if it’s a subfolder
Copy code
exclude:
- "some-dir/bentoml/"
Would these exclude all files in the bentoml folder?
s
Yes, it should! The exclude should behave exactly like a gitignore.
👍 1
b
Also if you have a
venv
folder that should be excluded too
👍 1
s
Thanks - but it’s outside of the repo folder
b
can u try something stupid
rename
bentoml
to something else (like
bento
)
and run it again
maybe there's a namespace clash or something