Implement refresh token functionality and enhance error handling in authentication

This commit is contained in:
liosha84
2025-08-07 13:31:46 +03:00
parent 2e6f4bb870
commit c4c67e1ef1
12 changed files with 325 additions and 13 deletions
+2 -1
View File
@@ -49,8 +49,9 @@ To run the application, follow these steps:
GRANT ALL PRIVILEGES ON DATABASE jambotronDB TO admin;
```
- If you are using Docker, you can run PostgreSQL using the following command:
- port 5433 is used.
```bash
docker run --name postgresDB -p 5432:5432 -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=postgrespw -e POSTGRES_DB=jambotronDB -d postgres
docker run --name postgresDB -p 5433:5432 -e POSTGRES_USER=admin -e POSTGRES_PASSWORD=postgrespw -e POSTGRES_DB=jambotronDB -d postgres
```
- if you are wont to use pgadmin
```bash