-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#42 Refactor: 배포 환경에서 환경변수 자동 주입용 파일 분리 [박한솔]
- Loading branch information
Showing
17 changed files
with
141 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,3 +39,5 @@ out/ | |
### Mac OS ### | ||
.DS_Store | ||
|
||
# application-secret | ||
/application-secret.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 0 additions & 85 deletions
85
web3-credential-server/build/resources/main/application.properties
This file was deleted.
Oops, something went wrong.
Binary file modified
BIN
-33.6 KB
(90%)
web3-credential-server/build/test-results/test/binary/output.bin
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
web3-credential-server/build/test-results/test/binary/output.bin.idx
Binary file not shown.
Binary file modified
BIN
-4.73 KB
(96%)
web3-credential-server/build/test-results/test/binary/results.bin
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
web3-credential-server/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
85 changes: 0 additions & 85 deletions
85
web3-credential-server/src/main/resources/application.properties
This file was deleted.
Oops, something went wrong.
84 changes: 84 additions & 0 deletions
84
web3-credential-server/src/main/resources/application.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
spring: | ||
application: | ||
name: spring-web3 | ||
profiles: | ||
include: secret #application-secret.yaml ?? ??? | ||
|
||
jpa: | ||
open-in-view: false #Lazy Loading ???? | ||
|
||
main: | ||
allow-bean-definition-overriding: true | ||
|
||
datasource: | ||
url: jdbc:h2:mem:test;MODE=MYSQL;DB_CLOSE_DELAY=-1 | ||
driverClassName: org.h2.Driver | ||
username: sa | ||
password: password | ||
h2: | ||
console: | ||
enabled: false | ||
path: /h2-console | ||
jpa: | ||
properties: | ||
hibernate: | ||
dialect: org.hibernate.dialect.MySQLDialect | ||
format_sql: true | ||
show-sql: true | ||
database-platform: org.hibernate.dialect.H2Dialect | ||
sql: | ||
init: | ||
schema-locations: classpath:schema.sql | ||
data-locations: classpath:data.sql | ||
mode: always | ||
|
||
servlet: | ||
multipart: | ||
enabled: true | ||
max-file-size: 10MB | ||
max-request-size: 10MB | ||
|
||
jwt: | ||
key: '' | ||
access-token-validity: 3600000 | ||
refresh-token-validity: 86400000 | ||
|
||
mvc: | ||
cors: | ||
allowed-origin-patterns: http://localhost:8080 | ||
allow-credentials: true | ||
|
||
kakao: | ||
#kakao.client-id= | ||
#kakao.redirect-uri= | ||
token-url: https://kauth.kakao.com/oauth/token | ||
user-info-url: https://kapi.kakao.com/v2/user/me | ||
message-url: https://kapi.kakao.com/v2/api/talk/memo/default/send | ||
code-url: https://kauth.kakao.com/oauth/authorize | ||
|
||
cloud: | ||
aws: | ||
s3-bucket-name: '' | ||
s3-bucket-url: '' | ||
region-static: ap-northeast-2 | ||
credentials: | ||
accessKey: '' | ||
secretKey: '' | ||
stack: | ||
auto: false | ||
|
||
passport: | ||
client-secret: '' | ||
public-key-str: '' | ||
|
||
rsa: | ||
public-key: '' | ||
|
||
server: | ||
http2: | ||
enabled: false | ||
port: 8080 | ||
|
||
sign: | ||
sign-cert-dir: web3-credential-server/src/main/resources/signCertStorage/ | ||
sign-pri-dir: web3-credential-server/src/main/resources/signPriStorage/ |
Oops, something went wrong.