diff --git a/prd/src/main/resources/application.properties b/prd/src/main/resources/application.properties deleted file mode 100644 index 8ad29c2..0000000 --- a/prd/src/main/resources/application.properties +++ /dev/null @@ -1 +0,0 @@ -spring.application.name=prd diff --git a/prd/src/main/resources/application.yml b/prd/src/main/resources/application.yml new file mode 100644 index 0000000..a8c4d47 --- /dev/null +++ b/prd/src/main/resources/application.yml @@ -0,0 +1,27 @@ +#로컬 실행시 기본 프로필 +spring: + profiles: + active: + - dev +--- +#공통 설정 + +--- +#프로필 별 설정 DEV +spring: + profiles: DEV +server: + port: 9001 +logging: + level: + root: debug + +--- +#프로필 별 설정 PROD +spring: + profiles: PROD +server: + port: 9000 +logging: + level: + root: WARN \ No newline at end of file