renamed env file
This commit is contained in:
+1
-1
@@ -37,4 +37,4 @@ out/
|
||||
.vscode/
|
||||
|
||||
### Misc ###
|
||||
.env_dev
|
||||
*.local
|
||||
|
||||
@@ -2,7 +2,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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user