We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b7b688 commit 93dcb3aCopy full SHA for 93dcb3a
2 files changed
.gitignore
@@ -33,3 +33,5 @@ build/
33
### VS Code ###
34
.vscode/
35
/resources/image/
36
+
37
+.env
entrance/src/main/resources/application-dev.yaml
@@ -3,6 +3,8 @@ server:
3
spring:
4
application:
5
name: e-commerce-api
6
+ config:
7
+ import: optional:file:.env[.properties]
8
datasource:
9
driver-class-name: com.mysql.cj.jdbc.Driver
10
url: jdbc:mysql://127.0.0.1:3306/e_commerce?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
@@ -13,7 +15,7 @@ spring:
13
15
host: smtp.163.com
14
16
port: 465
17
username: ${EMAIL_USER}
- password: RLtWNHDJkCfTjBmy
18
+ password: ${EMAIL_PASS}
19
properties:
20
mail:
21
smtp:
0 commit comments