Skip to content

Commit 2222c29

Browse files
LP-ReactGabriel Lopezletronx1984
authored
Fix: Azure Key Vault Issue (#13)
* Feature/profile attendee (#7) * chore(db): initialize flyway and base schema * feat(db): add audit base table * feat(db): add audit functions * feat(db): enable audit triggers * chore(db): rename flyway migration versions * fix(db): fix audit trigger migration * feat(auth): implement jwt authentication, registration and global error handling * feat: add AuditoriaContextFilter * chore: migrate database schema and backend to English * refactor(auth): replace emailVerified with verificationStatus and update register flow * feat(auth): support country code and generate E.164 phone on user registration * feat(db): add city_slug to cities with unique constraint per country * feat(auth): register and login using user identity and attendee profile * chore: AuthController in folder V1 * refactor(auth,user,attendee): move phone fields to attendee profile, remove profile image from users, align register request and validation * chore(config): harden application properties for stage environment * refactor(db): Add migration to remove old cities and insert Peruvian departments * feat(attendee): add update profile attendee (#9) * Fix/attendee patch response message (#10) * fix(profile_attendee): handle duplicate phone number error and update response format * refactor(db): unify ids to bigint * refactor(db): unify ids to bigint * refactor(attendee_profile): response update profile in controller * Feature/email verification (#11) * email-verification done * fix: ignore .env file and remove from tracking * fix: azure-mail-service structure * refactor: azure mail service only * refactor: properties * refactor: comments in properties * fix: all profiles properties --------- Co-authored-by: JuanCarlos <jcgpalacios1@gmail.com> * fix: azure key vault endpoint * fix: spacing in a migration * fix: environment variables * fix: disable azure key vault * chore: application-stage and prod --------- Co-authored-by: Gabriel Lopez <i202332157@cibertec.edu.pe> Co-authored-by: JuanCarlos <jcgpalacios1@gmail.com>
1 parent 8e88fda commit 2222c29

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/resources/application-prod.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
spring.application.name=webapi
22

3-
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
3+
# spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
44

55
spring.datasource.url=${DB_URL_PROD}
6-
spring.datasource.username=${DB_USER-PROD}
6+
spring.datasource.username=${DB_USER_PROD}
77
spring.datasource.password=${DB_PASSWORD_PROD}
88
spring.datasource.driver-class-name=org.postgresql.Driver
99

src/main/resources/application-stage.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
spring.application.name=webapi
22

3-
spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
3+
# spring.cloud.azure.keyvault.secret.property-sources[0].endpoint=${AZURE_KEY_VAULT_ENDPOINT}
44

55
spring.datasource.url=${DB_URL_STAGE}
66
spring.datasource.username=${DB_USER_STAGE}

0 commit comments

Comments
 (0)