Explorar el Código

gitignore external assets by default (#3621)

benedikt-bartscher hace 10 meses
padre
commit
f71400896b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      reflex/constants/config.py

+ 1 - 1
reflex/constants/config.py

@@ -39,7 +39,7 @@ class GitIgnore(SimpleNamespace):
     # The gitignore file.
     FILE = ".gitignore"
     # Files to gitignore.
-    DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]"}
+    DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]", "assets/external/"}
 
 
 class RequirementsTxt(SimpleNamespace):