Skip to content

Commit

Permalink
Improved .gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Trey <[email protected]>
  • Loading branch information
TreyWW authored Nov 24, 2024
1 parent b4065d0 commit 476dda0
Showing 1 changed file with 118 additions and 13 deletions.
131 changes: 118 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,127 @@
*.sqlite3
*.db
# Byte-compiled / optimized / DLL files
*/__pycache__/*
*.py[cod]
*.pyc
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

venv
venv/
# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Environments
.env
*.env
environment.yml

!.env.sample

.venv
env/
venv/
ENV/
ENV_DIR/
env.bak/
venv.bak/
media/*
.idea
.idea/

# distribution
# mypy
.mypy_cache/
.dmypy.json
dmypy.json

.dist
.dist/
dist
dist/
# Pyre type checker
.pyre/

# VS Code
.vscode

*.egg-info
myfinances.egg-info
myfinances.egg-info/
# Node
node_modules

0 comments on commit 476dda0

Please sign in to comment.