renamed env file

This commit is contained in:
2026-03-26 21:25:51 +01:00
parent 84fe628656
commit 0c13b134ab
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -93,7 +93,7 @@ tasks.withType<Test> {
```
To configure OpenAI (which I will use instead of LiteLLM initially since I have an OpenAI Api key and can get going quickly) and PostGreSQL I will create a .env_dev file in the root dir, fill all credentials and add it to .gitignore
To configure OpenAI (which I will use instead of LiteLLM initially since I have an OpenAI Api key and can get going quickly) and PostGreSQL I will create a .env.local file in the root dir, fill all credentials and add it to .gitignore
```
DB_URL=jdbc:postgresql://192.168.1.208:5433/vaessl
@@ -112,7 +112,7 @@ spring:
application:
name: vaessl
config:
import: "optional:file:.env_dev[.properties]"
import: "optional:file:.env.local[.properties]"
datasource:
url : ${DB_URL}
username: ${DB_USERNAME}