From 23f5c9226304cba4c6bf35ea9a8f3e5843cc6046 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Fri, 6 Oct 2023 10:25:53 +0000 Subject: [PATCH] .gitignore edite for flask --- .gitignore | 71 ++++++++++++++++++------------------------------------ 1 file changed, 23 insertions(+), 48 deletions(-) diff --git a/.gitignore b/.gitignore index b24d71e..a7f7885 100644 --- a/.gitignore +++ b/.gitignore @@ -1,50 +1,25 @@ -# These are some examples of commonly ignored file patterns. -# You should customize this list as applicable to your project. -# Learn more about .gitignore: -# https://www.atlassian.com/git/tutorials/saving-changes/gitignore - -# Node artifact files -node_modules/ -dist/ - -# Compiled Java class files -*.class - -# Compiled Python bytecode -*.py[cod] - -# Log files -*.log - -# Package files -*.jar - -# Maven -target/ -dist/ - -# JetBrains IDE -.idea/ - -# Unit test reports -TEST*.xml - -# Generated by MacOS .DS_Store +.env +.flaskenv +*.pyc +*.pyo +env/ +venv/ +.venv/ +env* +dist/ +build/ +*.egg +*.egg-info/ +.tox/ +.cache/ +.pytest_cache/ +.idea/ +docs/_build/ +.vscode -# Generated by Windows -Thumbs.db - -# Applications -*.app -*.exe -*.war - -# Large media files -*.mp4 -*.tiff -*.avi -*.flv -*.mov -*.wmv - +# Coverage reports +htmlcov/ +.coverage +.coverage.* +*,cover \ No newline at end of file