Initial commit with authentication and routes for registering/login already set up
This commit is contained in:
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
# Python specific ignores
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.so
|
||||
*.egg
|
||||
*.egg-info/
|
||||
*.pyd
|
||||
*.whl
|
||||
*.log
|
||||
*.pot
|
||||
*.mo
|
||||
*.pyo
|
||||
|
||||
# Virtual environment directories
|
||||
env/
|
||||
venv/
|
||||
.venv/
|
||||
|
||||
# Python packaging
|
||||
*.manifest
|
||||
*.spec
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Cache files
|
||||
*.log
|
||||
*.sqlite3
|
||||
*.db
|
||||
.DS_Store
|
||||
*.bak
|
||||
*.swp
|
||||
|
||||
# Test output
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
coverage.*
|
||||
*.cover
|
||||
*.py,cover
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.pid
|
||||
|
||||
# FastAPI specific
|
||||
*.env
|
||||
alembic/versions/* # Ignore migration files if autogenerated
|
||||
instance/
|
||||
|
||||
# VS Code settings (specific to SSH)
|
||||
.vscode/
|
||||
.vscode-server/
|
||||
|
||||
# Ignore SSH settings files
|
||||
.ssh/
|
||||
*.pem
|
||||
*.key
|
||||
|
||||
# pyright cache (VSCode Python language server)
|
||||
.pyright/
|
||||
Reference in New Issue
Block a user