Skip to content

Commit

Permalink
Merge branch 'dev' into feat-hg-keygenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-khg authored Dec 3, 2023
2 parents b989006 + 424a9a5 commit c036497
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
KUSTOMIZE_PATH="core-service-kusto/overlays/dev"
cd $KUSTOMIZE_PATH
kustomize edit set image core-svc-image="${{ env.ECR_URL }}:${{ github.sha }}"
kustomize edit set image app-core-img="${{ env.ECR_URL }}:${{ github.sha }}"
kustomize build .
- name: Commit minifest files
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/catcher/security/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SecurityConfig {
private final DBManager dbManager;
private final String[] allowedUrls = {
"/", "/swagger-ui/**", "/users/**", "favicon.ico",
"/health/**", "/auth/**", "/oauth/**", "/v3/api-docs/**"
"/health/**", "/auth/**", "/oauth/**", "/v3/api-docs/**", "/core/v3/api-docs/**"
};

@Bean
Expand Down
5 changes: 4 additions & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,7 @@ spring.mail.properties.mail.smtp.starttls.required=true
spring.mail.properties.mail.smtp.connectiontimeout=5000
spring.mail.properties.mail.smtp.timeout=5000
spring.mail.properties.mail.smtp.writetimeout=5000
auth-code-expiration-millis=1800000
auth-code-expiration-millis=1800000

### swagger
springdoc.api-docs.path=/core/v3/api-docs
5 changes: 4 additions & 1 deletion src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,7 @@ spring.mail.properties.mail.smtp.starttls.required=true
spring.mail.properties.mail.smtp.connectiontimeout=5000
spring.mail.properties.mail.smtp.timeout=5000
spring.mail.properties.mail.smtp.writetimeout=5000
auth-code-expiration-millis=1800000
auth-code-expiration-millis=1800000

### swagger
springdoc.api-docs.path=/core/v3/api-docs
2 changes: 1 addition & 1 deletion src/main/resources/application-test.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ logging.level.org.hibernate.SQL=DEBUG

### Redis
spring.data.redis.host=localhost
spring.data.redis.port=6379
spring.data.redis.port=6380

### JWT
# TODO : need to fill secret
Expand Down

0 comments on commit c036497

Please sign in to comment.