Exclude .web dir when running uvicorn (#2986)

This commit is contained in:
Elijah Ahianyo 2024-04-04 09:25:03 -07:00 committed by GitHub
parent ae3dfc6412
commit 619c0b0d06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -190,6 +190,7 @@ def run_backend(
log_level=loglevel.value,
reload=True,
reload_dirs=[config.app_name],
reload_excludes=[constants.Dirs.WEB],
)