16 lines
337 B
YAML
16 lines
337 B
YAML
# JWT Configuration
|
|
jwt:
|
|
secret: mySecretKeyForJwtTokenGenerationThatIsLongEnoughForHS256Algorithm
|
|
expiration: 7200 # 2 hours in seconds
|
|
refresh-expiration: 604800 # 7 days in seconds
|
|
|
|
# Server Configuration
|
|
server:
|
|
port: 8080
|
|
|
|
# Spring Configuration
|
|
spring:
|
|
application:
|
|
name: gym-manage-cuit
|
|
profiles:
|
|
active: dev |