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