# Python virtual environment .venv/ venv/ env/ ENV/ # Python cache files __pycache__/ *.py[cod] *$py.class *.so .Python *.egg-info/ .installed.cfg *.egg app/__pycache__/ app/crud/__pycache__/ app/models/__pycache__/ app/routes/__pycache__/ app/schemas/__pycache__/ tests/__pycache__/ # Database database/items.db *.db *.sqlite *.sqlite3 # IDE specific files .idea/ .vscode/ *.swp *.swo .DS_Store # Logs *.log # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover