Skip to content

Commit 66a3a0c

Browse files
committed
[CHORE] application.yml 설정
1 parent 8df9532 commit 66a3a0c

3 files changed

Lines changed: 30 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,4 @@ out/
3636

3737
### VS Code ###
3838
.vscode/
39-
40-
/src/main/resources/*.yml
4139
.DS_Store

.idea/workspace.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/resources/application.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
server:
2+
port: 8080
3+
address: 0.0.0.0
4+
servlet:
5+
encoding:
6+
charset: UTF-8
7+
force: true
8+
9+
spring:
10+
application:
11+
name: my-app
12+
datasource:
13+
url: jdbc:mysql://database-1.cp8owukog9o6.ap-northeast-2.rds.amazonaws.com/pickpick_db
14+
username: pickpick
15+
password: pickpick0904!!
16+
driver-class-name: com.mysql.cj.jdbc.Driver
17+
jpa:
18+
hibernate:
19+
ddl-auto: create
20+
properties:
21+
hibernate:
22+
show_sql: false
23+
format_sql: false
24+
default_batch_fetch_size: 100
25+
26+
logging:
27+
level:
28+
root: info
29+
com.myapp: info

0 commit comments

Comments
 (0)