20 lines
248 B
Text
20 lines
248 B
Text
# .gitignore
|
|
|
|
# Environment variables
|
|
# Contains secrets, should NEVER be committed.
|
|
.env
|
|
|
|
# Python specific
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Temporary files used by the OIDC Bridge
|
|
/tmp/*.json
|
|
|
|
# IDE / Editor specific
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|