|
@ -1,19 +1,21 @@ |
|
|
# Pekka Helenius <fincer89@hotmail.com>, Fjordtek 2020 |
|
|
# Pekka Helenius <fincer89@hotmail.com>, Fjordtek 2020 |
|
|
|
|
|
|
|
|
|
|
|
spring.profiles.active = dev |
|
|
|
|
|
|
|
|
# Default HTTP TCP port number for this server application |
|
|
# Default HTTP TCP port number for this server application |
|
|
# Do not set this value below 1024 as these TCP/UDP ports are privileged, requiring root permissions |
|
|
# Do not set this value below 1024 as these TCP/UDP ports are privileged, requiring root permissions |
|
|
# |
|
|
|
|
|
server.port=8080 |
|
|
|
|
|
server.use-forward-headers=true |
|
|
|
|
|
|
|
|
server.port = 8080 |
|
|
|
|
|
|
|
|
|
|
|
server.use-forward-headers = true |
|
|
|
|
|
|
|
|
|
|
|
# Native REST API URI |
|
|
|
|
|
spring.data.rest.base-path = /api |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spring.h2.console.enabled=true |
|
|
|
|
|
spring.h2.console.path=/h2-console |
|
|
|
|
|
spring.datasource.url=jdbc:h2:mem:testdb |
|
|
|
|
|
|
|
|
|
|
|
spring.jpa.show-sql=true |
|
|
|
|
|
|
|
|
|
|
|
# REST API direct api URL ref |
|
|
|
|
|
spring.data.rest.base-path=/api |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|