-
Notifications
You must be signed in to change notification settings - Fork 48
Fix identity api url #246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix identity api url #246
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,7 +115,10 @@ | |
| identity-api-url-getByPhoneNum =IDENTITY_BASE_URL/id/getByPhoneNum?phoneNum= | ||
| identity-api-url-getByBenId =IDENTITY_BASE_URL/id/getByBenId?benId= | ||
| identity-api-url-getByBenRegId =IDENTITY_BASE_URL/id/getByBenRegId?benRegId= | ||
| identity-api-url-benCreate =IDENTITY_BASE_URL/id/create | ||
| IDENTITY_API_URL=https://amritdemo.piramalswasthya.org | ||
| identity-api-url-benCreate=${IDENTITY_API_URL}/id/create | ||
| #identity-api-url-benCreate =IDENTITY_BASE_URL/id/create | ||
|
|
||
| identity-api-url-benEdit =IDENTITY_BASE_URL/id/edit | ||
| identity-api-url-benEditEducationCommunity=IDENTITY_BASE_URL/id/editEducationOrCommunity | ||
|
|
||
|
|
@@ -173,3 +176,213 @@ | |
| jwt.access.expiration=86400000 | ||
| jwt.refresh.expiration=604800000 | ||
|
|
||
| # local env | ||
| server.port=8083 | ||
| # DB Connections | ||
| spring.datasource.url=jdbc:mysql://devbox.bizbrolly.com:3306/db_iemr | ||
| spring.datasource.username=root | ||
| spring.datasource.password=BizDev@24BB | ||
Check failureCode scanning / SonarCloud Database passwords should not be disclosed High
Make sure this database password gets changed and removed from the code. See more on SonarQube Cloud
|
||
| spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver | ||
|
|
||
| encDbUserName=zFlYsp9Z0s+lRvLM15A3g/Ba0w8VGs/1usuW7EsGF3k= | ||
| encDbPass=JGGAGn5wTlrbTLUHY+5BzfBa0w8VGs/1usuW7EsGF3k= | ||
|
|
||
| secondary.datasource.url=jdbc:mysql://devbox.bizbrolly.com:3306/db_reporting | ||
| secondary.datasource.username=root | ||
| secondary.datasource.password=BizDev@24BB | ||
Check failureCode scanning / SonarCloud Database passwords should not be disclosed High
Make sure this database password gets changed and removed from the code. See more on SonarQube Cloud
|
||
| secondary.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
| firebase.enabled = true | ||
| firebase.credential-file =firebase_cred.json | ||
|
|
||
|
|
||
|
|
||
| ## KM Configuration | ||
| km-base-protocol=http | ||
| km-username=okmAdmin | ||
| km-password=admin | ||
| km-base-url=http://localhost:8084/OpenKM | ||
| km-base-path=localhost:8084/OpenKM | ||
| km-root-path=/okm:personal/users/ | ||
| km-guest-user=guest | ||
| km-guest-password=guest | ||
|
|
||
| # CTI Config | ||
| cti-server-ip=10.208.122.99 | ||
| cti-logger_base_url=http://10.208.122.99/logger | ||
| sms-gateway-url = | ||
|
|
||
| # Identity Config | ||
| identity-api-url = http://localhost:8094/ | ||
| #Verify whether 1097 and identity are same? | ||
| identity-1097-api-url = http://localhost:8095/ | ||
| ##Generate Benificiary Config | ||
| genben-api=http://localhost:8092/ | ||
|
|
||
| #### SMS Configuration | ||
| send-sms=false | ||
| sendSMSUrl = http://localhost:8080/sms/sendSMS | ||
| source-address=AIDSHL | ||
| sms-username=<Enter SMS username> | ||
| sms-password=<Enter SMS password> | ||
| send-message-url=<Enter SMS sending URL here> | ||
|
|
||
| ###SMS Scheduler configurations | ||
| start-sms-scheduler=false | ||
| cron-scheduler-sms=0 0/1 * * * ? * | ||
|
|
||
| #### Email Configuration | ||
| send-email=false | ||
| spring.mail.host=smtp.gmail.com | ||
| spring.mail.port=587 | ||
| spring.mail.username=<Enter mail username> | ||
| spring.mail.password=<Enter mail password> | ||
Check failureCode scanning / SonarCloud Credentials should not be hard-coded High
Revoke and change this password, as it is compromised. See more on SonarQube Cloud
|
||
| spring.mail.properties.mail.smtp.auth=true | ||
| spring.mail.properties.mail.smtp.starttls.enable=true | ||
|
|
||
| ###Email Scheduler configurations | ||
| start-email-scheduler=true | ||
| cron-scheduler-email=0 0/1 * * * ? * | ||
|
|
||
| ##-------------------------------###cti data sync Scheduler configurations------------------------------------------------------ | ||
|
|
||
| start-ctidatasync-scheduler=false | ||
| cron-scheduler-ctidatasync=0 0 2 */2 * ? | ||
|
|
||
| ##-------------------------------###cti data check with call detail report Scheduler------------------------------------------------------ | ||
|
|
||
| #Runs at everyday 12:10AM | ||
| start-ctidatacheck-scheduler=true | ||
| cron-scheduler-ctidatacheck=0 10 00 * * * | ||
|
|
||
| ##---------------------------------#### Registration schedular for Avni------------------------------------------------------------------------------ | ||
|
|
||
| start-avni-scheduler=false | ||
| cron-avni-registration=0 0/1 * * * ? * | ||
|
|
||
| ##------------------------------------------------#### Everwell Regsitration Scheduler--------------------------------------------------------------- | ||
|
|
||
| start-registration-scheduler=false | ||
| cron-scheduler-registration=0 34 19 * * ? * | ||
|
|
||
| ##----------------------------------------------------#everwell data sync----------------------------------------------------------- | ||
|
|
||
| start-everwelldatasync-scheduler=false | ||
| cron-scheduler-everwelldatasync=0 0/5 * * * ? * | ||
|
|
||
| ##-----------------------------------------------#NHM data dashboard schedular---------------------------------------------------------------- | ||
| # run at everyday 12:01AM | ||
| start-nhmdashboard-scheduler=true | ||
| cron-scheduler-nhmdashboard=0 1 * * * ? * | ||
| ##----------------------------------------------------#grievance data sync----------------------------------------------------------- | ||
|
|
||
| start-grievancedatasync-scheduler=false | ||
| cron-scheduler-grievancedatasync=0 0/2 * * * ? | ||
|
|
||
| ### Redis IP | ||
| spring.redis.host=localhost | ||
|
|
||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| ###CTI data sync schedular | ||
| cz-duration=40 | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| ## prescription template | ||
| TMprescriptionTemplate=TMPrescription | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| ##duration for everwell calender | ||
| everwellCalendarDuration=15 | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| ##lonic variables | ||
| lonicPageSize=10 | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| #snomedcti | ||
| snomedCTPageSize=10 | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| #call retry count | ||
| callRetryConfiguration=3 | ||
| ##--------------------------------------------------------------------------------------------------------------- | ||
| #avni registration Duration | ||
| avniRegistrationLimit=7 | ||
|
|
||
| #--------------------------NHM Agent Real Time Data---------------------------- | ||
| nhm.agent.real.time.data.url= http://175.101.1.83/apps/utility/alive_api.php | ||
| nhm.agent.real.time.data.cron.scheduler=0 */2 * ? * * | ||
| nhm.agent.real.time.data.cron.flag=true | ||
|
|
||
| carestream_socket_ip = 192.168.43.39 | ||
| carestream_socket_port = 1235 | ||
|
|
||
| ## everwell variables | ||
| everwellUserName = <Enter everwell username> | ||
| everwellPassword = <Enter everwell password> | ||
| amritUserName = <Enter AMRIT username> | ||
| amritPassword = <Enter AMRIT password> | ||
|
|
||
| ## everwell API call | ||
| everwellAddSupportAction = https://beta-hub.everwell.org/Api/Patients/AddSupportAction | ||
| everwellEditDoses = https://beta-hub.everwell.org/Api/Patients/EditManualDoses | ||
| everwellEditMissedDoses = https://beta-hub.everwell.org/Api/Patients/EditMissedDoses | ||
| everwellGetPatientAdherenceUrl = https://beta-hub.everwell.org/Api/Patients/CurrentMonthMissedAdherence?Page= | ||
| everwellEditSecondaryPhoneNo = https://beta-hub.everwell.org/Api/Patients/EditPhoneNumber | ||
| everwell1097userAuthenticate = http://localhost:8083/user/userAuthenticate | ||
| everwelluserAuthenticate = https://beta-hub.everwell.org/token | ||
| everwellRegisterBenficiary = http://localhost:8083/beneficiary/create | ||
|
|
||
|
|
||
| ## LungAssessment credentials | ||
| lungAssessmentEmail = <Enter SWAASA email id> | ||
| lungAssessmentPassword = <Enter SWAASA password> | ||
|
|
||
|
|
||
| ## SWASSA APIs | ||
| lungAssessmentAdminLogin = http://swaasa.sandbox.swaasa.ai/api/adminLogin | ||
| lungAssessmentValidateCough = http://swaasa.sandbox.swaasa.ai/api/verifycough | ||
| lungAssessmentStartAssesment = http://swaasa.sandbox.swaasa.ai/api/assessment | ||
| lungAssessmentGetAssesment = http://swaasa.sandbox.swaasa.ai/api/getAssessment | ||
|
|
||
| #E- Sanjeevani user authenticate creds | ||
| eSanjeevani.url: https://preprod.esanjeevaniopd.xyz/uat/aus/api/ThirdPartyAuth/providerLogin | ||
| eSanjeevani.userName: <Enter e-sanjeevani username> | ||
| eSanjeevani.password: <Enter e-sanjeevani password> | ||
| eSanjeevani.salt: 123456 | ||
| eSanjeevani.source: 11001 | ||
| eSanjeevani.registerPatient: https://preprod.esanjeevaniopd.xyz/uat/ps/api/v1/Patient | ||
| eSanjeevani.routeUrl: https://uat.esanjeevani.in/user/signin | ||
|
|
||
| biometric.discover.url = http://127.0.0.1:port/ | ||
| biometric.deviceInfo.url = http://127.0.0.1:port/rd/info | ||
| biometric.capture.url = http://127.0.0.1:port/rd/capture | ||
| eAusadhaUrl=https://dlc.kar.nic.in/e-services/api/DWInstituteInward | ||
|
|
||
| eausadhaAuthorization=<Enter eausadha authorization key> | ||
| spring.main.allow-bean-definition-overriding=true | ||
| spring.main.allow-circular-references=true | ||
| jwt.secret=my-32-character-ultra-secure-and-ultra-long-secret | ||
|
|
||
|
|
||
| fileBasePath =<Enter your required basepath here>/Doc | ||
| ##grievance API call | ||
| updateGrievanceDetails = <ENTER GRIEVANCE_API_BASE_URL>/grsbepro/igemr1097/public/api/v1/state-wise/grievance-list?page=PageNumber¤tpage=1 | ||
| updateGrievanceTransactionDetails=<ENTER GRIEVANCE_API_BASE_URL>/grsbepro/igemr1097/public/api/v1/grievance_details/ | ||
|
|
||
| ## grievance variables | ||
| grievanceUserName = <Enter Grievance username> | ||
| grievancePassword = <Enter Grievance password> | ||
|
|
||
| grievanceUserAuthenticate = <Enter Grievance UserAuthenticate> | ||
| grievanceDataSyncDuration = <Enter Grievience Data Sync Duration> | ||
|
|
||
| springdoc.api-docs.enabled=true | ||
| springdoc.swagger-ui.enabled=true | ||
|
|
||
| isProduction=false | ||
| grievanceAllocationRetryConfiguration=3 | ||
|
|
||
| logging.path=logs/ | ||
| logging.file.name=logs/common-api.log | ||
|
|
||
| captcha.secret-key= <Enter Cloudflare Secret Key> | ||
| captcha.verify-url= https://challenges.cloudflare.com/turnstile/v0/siteverify | ||
| captcha.enable-captcha=true | ||
|
|
||
| cors.allowed-origins=http://localhost:* | ||
|
|
||
Check failure
Code scanning / SonarCloud
Credentials should not be hard-coded High