- Implemented user authentication with JWT tokens - Added user and profile models with OneToOne relationship - Created service layer for business logic separation - Implemented DRF serializers and views - Added comprehensive test suite with model-bakery factories - Fixed ipdb/pdbpp dependency conflicts with custom test runner - Configured development and production environments - Added deployment configurations for Apache, systemd, and Docker
41 lines
309 B
Plaintext
41 lines
309 B
Plaintext
*.pyc
|
|
*.pyo
|
|
*.pyc
|
|
__pycache__/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.log
|
|
.env
|
|
.venv
|
|
venv/
|
|
uv.lock
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Django
|
|
*.sqlite3
|
|
media/
|
|
staticfiles/
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup |