feat/ci-improvement #4

Merged
zwitschi merged 32 commits from fest/ci-improvement into main 2025-10-28 09:07:57 +01:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 7f4cd33b65 - Show all commits

View File

@@ -22,7 +22,7 @@ This document outlines the proposed user roles and permissions model for the Cal
## Authentication System ## Authentication System
The authentication system uses JWT (JSON Web Tokens) for securing API endpoints. Users can register with a username, email, and password. Passwords are hashed using bcrypt. Upon successful login, an access token is issued, which must be included in subsequent requests for protected resources. The authentication system uses JWT (JSON Web Tokens) for securing API endpoints. Users can register with a username, email, and password. Passwords are hashed using a `passlib` CryptContext for secure, configurable hashing. Upon successful login, an access token is issued, which must be included in subsequent requests for protected resources.
## Key Components ## Key Components

View File

@@ -1,4 +1,3 @@
bcrypt
fastapi fastapi
uvicorn uvicorn
sqlalchemy sqlalchemy