project setup

- update README.md
- setup tls
  - update gradle.properties with docker tls ports
  - update application.yml
    - disable tls in develop
    - set docker values
    - add default tls values
  - add keystore.p12
- setup postgres
  - update application.yml with defualt values
  - add 000-initizalise.sql
  - add postgres dependencies and config
  - add docker compose development
- add actuator.http
- add http environment
- update name and readme for service
This commit is contained in:
2025-09-10 09:49:42 +02:00
parent 5b11f3b02b
commit 83897285e4
11 changed files with 177 additions and 8 deletions

3
http/actuator.http Normal file
View File

@@ -0,0 +1,3 @@
### Actuator
GET {{url}}/actuator

11
http/http-client.env.json Normal file
View File

@@ -0,0 +1,11 @@
{
"develop": {
"url": "http://localhost:8080"
},
"docker": {
"url": "https://localhost:8443"
},
"kubernetes": {
"url": "https://10.0.0.0"
}
}