Initial commit with basic CRUD functionality:
* GET all properties * GET one property by id * CREATE one property * DELETE one property by id
This commit is contained in:
@@ -13,3 +13,20 @@ spring:
|
||||
h2:
|
||||
console:
|
||||
enabled: true
|
||||
security:
|
||||
oauth2:
|
||||
resourceserver:
|
||||
jwt:
|
||||
issuer-uri: http://localhost:8280/realms/propify
|
||||
jwk-set-uri: ${spring.security.oauth2.resourceserver.jwt.issuer-uri}/protocol/openid-connect/certs
|
||||
logging:
|
||||
level:
|
||||
org:
|
||||
springframework:
|
||||
security: DEBUG
|
||||
|
||||
cors:
|
||||
allowed-origins:
|
||||
- http://localhost:4200
|
||||
- http://localhost:8080
|
||||
allowed-headers: "*"
|
||||
Reference in New Issue
Block a user