This commit is contained in:
Keep Creating Online
2025-01-16 16:18:51 -05:00
parent c9090b5813
commit dc5d918440

View File

@@ -17,7 +17,7 @@ CONFIG_FILE = "config.yaml"
SCRIPT_DIR = Path(__file__).parent SCRIPT_DIR = Path(__file__).parent
# Default exclusions # Default exclusions
DEFAULT_EXCLUDED_DIRS = ["node_modules", "venv", "__pycache__", ".git", "dist", "build", "logs", ".idea", ".vscode"] DEFAULT_EXCLUDED_DIRS = ["node_modules", "venv", "__pycache__", ".git", "logs", ".idea", ".vscode"]
DEFAULT_EXCLUDED_FILES = [ DEFAULT_EXCLUDED_FILES = [
"repo-context.txt", "repo-context.txt",
"package-lock.json", "package-lock.json",
@@ -25,7 +25,6 @@ DEFAULT_EXCLUDED_FILES = [
".gitattributes", ".gitattributes",
".gitignore", ".gitignore",
".dockerignore", ".dockerignore",
".env",
"*.pem", "*.pem",
"*.crt", "*.crt",
"*.key", "*.key",
@@ -34,11 +33,7 @@ DEFAULT_EXCLUDED_FILES = [
".browserslistrc", ".browserslistrc",
".editorconfig", ".editorconfig",
"client.crt", "client.crt",
"client-key.pem", "client-key.pem"
"docker-compose.yml",
".env.local",
".env.development",
".env.production"
] ]
# Load saved configuration from repository directory # Load saved configuration from repository directory