feat(auth): enterprise authentication and user management

This commit is contained in:
Schubert Ferenc 2026-07-02 22:19:12 +02:00
parent 4bc8b20a21
commit 86a32a942c
36 changed files with 2239 additions and 324 deletions

64
.gitignore vendored Normal file
View file

@ -0,0 +1,64 @@
# ===========================
# Python
# ===========================
.venv/
venv/
__pycache__/
*.py[cod]
*.pyo
.pytest_cache/
.mypy_cache/
# ===========================
# Next.js
# ===========================
.next/
node_modules/
out/
# ===========================
# Environment
# ===========================
.env
.env.local
.env.development.local
.env.production.local
# ===========================
# macOS
# ===========================
.DS_Store
# ===========================
# VS Code
# ===========================
.vscode/
# ===========================
# Logs
# ===========================
*.log
# ===========================
# Coverage
# ===========================
coverage/
htmlcov/
# ===========================
# Alembic
# ===========================
alembic/__pycache__/
# ===========================
# Python build
# ===========================
build/
dist/
*.egg-info/
# ===========================
# Temporary
# ===========================
*.tmp
*.swp