added initial spring boot setup with external postgres connection and openai api key

This commit is contained in:
2026-03-20 01:50:17 +01:00
parent 0913bead4b
commit 15831aefd7
12 changed files with 509 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
services:
postgres:
image: 'postgres:latest'
environment:
- 'POSTGRES_DB=mydatabase'
- 'POSTGRES_PASSWORD=secret'
- 'POSTGRES_USER=myuser'
ports:
- '5432'