From 372ee9e94356b849c773d4891404c712a2740170 Mon Sep 17 00:00:00 2001 From: Milo Chen Date: Mon, 29 May 2023 04:28:48 +0800 Subject: [PATCH] Update default .gitignore (#718) --- pynecone/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pynecone/constants.py b/pynecone/constants.py index e5aecba8e..06690012b 100644 --- a/pynecone/constants.py +++ b/pynecone/constants.py @@ -138,7 +138,7 @@ DEFAULT_META_LIST = [] # The gitignore file. GITIGNORE_FILE = ".gitignore" # Files to gitignore. -DEFAULT_GITIGNORE = {WEB_DIR, DB_NAME} +DEFAULT_GITIGNORE = {WEB_DIR, DB_NAME, "__pycache__/", "*.py[cod]"} # The name of the pynecone config module. CONFIG_MODULE = "pcconfig" # The python config file.