feat(auth): enterprise authentication and user management
This commit is contained in:
parent
4bc8b20a21
commit
86a32a942c
36 changed files with 2239 additions and 324 deletions
64
.gitignore
vendored
Normal file
64
.gitignore
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue