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
+1 -1
View File
@@ -37,4 +37,4 @@ out/
.vscode/ .vscode/
### Misc ### ### Misc ###
.env_dev *.local
+1 -1
View File
@@ -2,7 +2,7 @@ spring:
application: application:
name: vaessl name: vaessl
config: config:
import: "optional:file:.env_dev[.properties]" import: "optional:file:.env.local[.properties]"
datasource: datasource:
url : ${DB_URL} url : ${DB_URL}
username: ${DB_USERNAME} username: ${DB_USERNAME}
+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 DB_URL=jdbc:postgresql://192.168.1.208:5433/vaessl
@@ -112,7 +112,7 @@ spring:
application: application:
name: vaessl name: vaessl
config: config:
import: "optional:file:.env_dev[.properties]" import: "optional:file:.env.local[.properties]"
datasource: datasource:
url : ${DB_URL} url : ${DB_URL}
username: ${DB_USERNAME} username: ${DB_USERNAME}