-
Notifications
You must be signed in to change notification settings - Fork 33
Swagger Json Automation #134
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
47e0af1
docs: add DeepWiki badge and documentation link
DurgaPrasad-54 9dadc9f
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 c208cc5
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 5134862
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 684549a
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 3d12da0
chore(swagger): automate swagger sync to amrit-docs
DurgaPrasad-54 92d3753
fix(swagger): remove duplicate from properties and update swagger wor…
DurgaPrasad-54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,172 @@ | ||
| ndhmCreateHealthID=dummy | ||
| # --- Swagger Profile Dummy Properties --- | ||
| # Database | ||
| spring.datasource.url=jdbc:h2:mem:swaggerdb | ||
| spring.datasource.username=SA | ||
| spring.datasource.password= | ||
| spring.datasource.driver-class-name=org.h2.Driver | ||
| spring.jpa.database-platform=org.hibernate.dialect.H2Dialect | ||
| spring.jpa.hibernate.ddl-auto=none | ||
| spring.jpa.show-sql=false | ||
| spring.jpa.properties.hibernate.format_sql=false | ||
|
|
||
| # Redis | ||
| spring.redis.host=localhost | ||
| spring.redis.port=6379 | ||
| spring.redis.password= | ||
|
|
||
| # MongoDB (dummy connection string for CI/CD) | ||
| spring.data.mongodb.uri=mongodb://dummyuser:dummypassword@localhost:27017/test?authSource=admin | ||
|
|
||
| # Quartz Scheduler | ||
| spring.quartz.job-store-type=memory | ||
|
|
||
| # Dummy external API endpoints and keys | ||
| feedAuthUserName=dummy | ||
| feedAuthPassword=dummy | ||
| parentUrl=dummy | ||
| atomFeedURLPatientDemographic=dummy | ||
| abdmFacilityId=dummy | ||
| generateOTPForCareContext=dummy | ||
| validateOTPForCareContext=dummy | ||
| addCareContext=dummy | ||
| getAbdmFacilityServicies=dummy | ||
| x-CM-ID=dummy | ||
| abdmV3UserAuthenticate=dummy | ||
| generateOTP_ForCard=dummy | ||
| verifyOTP_ForCard=dummy | ||
| verifyOTP_ForCard_Aadhaar=dummy | ||
| generateHealthCard=dummy | ||
| generateHealthIDCard=dummy | ||
| ndhmGenerateOTPWithAadhaar=dummy | ||
| abdmGenerateMobileOTP=dummy | ||
| abdmConfirmAadhaarBio=dummy | ||
| ndhmGenerateOTP=dummy | ||
| ndhmVerifyOTP=dummy | ||
| abdmcreateHealthIdWithPreVerified=dummy | ||
| abdmVerifyOTP=dummy | ||
| abdmCheckAndGenerateMobileOTP=dummy | ||
| abdmVerifyMobileOTP=dummy | ||
| abdmVerifyBio=dummy | ||
|
|
||
| # Other likely required placeholders (add more as needed) | ||
| server.port=8080 | ||
| logging.level.root=INFO | ||
| logging.level.org.springframework=INFO | ||
| management.endpoints.web.exposure.include=* | ||
|
|
||
| # Add any other required properties here as new errors appear | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmVerifyBio=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmVerifyMobileOTP=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmCheckAndGenerateMobileOTP=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmVerifyOTP=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmcreateHealthIdWithPreVerified=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| ndhmGenerateOTPWithAadhaar=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| generateHealthIDCard=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| generateHealthCard=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| verifyOTP_ForCard_Aadhaar=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| verifyOTP_ForCard=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| generateOTP_ForCard=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| abdmV3UserAuthenticate=dummy | ||
| # Dummy value for required property to fix UnsatisfiedDependencyException | ||
| x-CM-ID=dummy | ||
| spring.datasource.url=jdbc:h2:mem:swaggerdb | ||
| spring.datasource.driver-class-name=org.h2.Driver | ||
| spring.datasource.username=sa | ||
| spring.datasource.password= | ||
| spring.jpa.database-platform=org.hibernate.dialect.H2Dialect | ||
| spring.jpa.hibernate.ddl-auto=none | ||
|
|
||
| # Disable Redis if not needed for docs (optional) | ||
| spring.redis.host=localhost | ||
| spring.redis.port=6379 | ||
|
|
||
| # CORS for Swagger UI | ||
| cors.allowed-origins=${CORS_ALLOWED_ORIGINS:http://localhost:9090,http://localhost:8080} | ||
|
|
||
| # Logging | ||
| logging.level.root=INFO | ||
|
|
||
| # Disable security auto-configuration (already excluded in main class) | ||
| # If you have custom security beans, add @Profile("!swagger") to them | ||
|
|
||
| jwt.secret=JWT_SECRET | ||
| eaushadhiStoreStockDetailsUrl=http://dummy-url-for-swagger | ||
| eaushadhiStoreStockAckUrl=http://dummy-url-for-swagger | ||
| eAushadhiDummy=dummy-value-for-swagger | ||
| benSearchByBenIDURL=http://dummy-url-for-swagger | ||
| userAuthURL=http://dummy-url-for-swagger | ||
| fhirUserName=dummy-username-for-swagger | ||
| fhirPassword=dummy-password-for-swagger | ||
| abhaMode=http://dummy-abha-mode-for-swagger | ||
| clientID=dummy-client-id-for-swagger | ||
| clientSecret=dummy-client-secret-for-swagger | ||
| ndhmuserAuthenticate=http://dummy-ndhm-auth-for-swagger | ||
| generateABDM_NotifySMS=http://dummy-abdm-sms-for-swagger | ||
| atomsFeedStartPage=1 | ||
| feedAuthUserName=dummy-feed-auth-username | ||
| feedAuthPassword=dummy-feed-auth-password | ||
| parentUrl=http://dummy-parent-url-for-swagger | ||
| atomFeedURLPatientDemographic=http://dummy-patient-demographic-url-for-swagger | ||
| abdmFacilityId=dummy-facility-id-for-swagger | ||
| generateOTPForCareContext=http://dummy-otp-for-care-context-for-swagger | ||
| validateOTPForCareContext=http://dummy-validate-otp-for-care-context-for-swagger | ||
| addCareContext=http://dummy-add-care-context-for-swagger | ||
| getAbdmFacilityServicies=http://dummy-get-abdm-facility-services-for-swagger | ||
| atomFeedURLPatientEncounter=http://dummy-atom-feed-patient-encounter | ||
| atomFeedURLPatientClinical=http://dummy-atom-feed-patient-clinical | ||
| # --- Additional required properties for Swagger profile (dummy values) --- | ||
| cors.allowed-origins=http://localhost:8080 | ||
| jwt.secret=dummy-jwt-secret | ||
| eaushadhiStoreStockDetailsUrl=http://dummy-eaushadhi-details-url | ||
| eaushadhiStoreStockAckUrl=http://dummy-eaushadhi-ack-url | ||
| eAushadhiDummy=dummy-eaushadhi | ||
| benSearchByBenIDURL=http://dummy-ben-search-url | ||
| userAuthURL=http://dummy-user-auth-url | ||
| fhirUserName=dummy-fhir-username | ||
| fhirPassword=dummy-fhir-password | ||
| abhaMode=dummy-abha-mode | ||
| clientID=dummy-client-id | ||
| clientSecret=dummy-client-secret | ||
| ndhmuserAuthenticate=dummy-ndhm-auth | ||
| generateABDM_NotifySMS=dummy-abdm-notify-sms | ||
| atomsFeedStartPage=1 | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| webLoginAbhaRequestOtp=dummy-web-login-abha-request-otp | ||
| webLoginAbhaVerify=dummy-web-login-abha-verify | ||
| verifyAbhaLogin=dummy-verify-abha-login | ||
| abhaLoginRequestOtp=dummy-abha-login-request-otp | ||
| abhaProfileLoginVerifyUser=dummy-abha-profile-login-verify-user | ||
| webLoginPhrCard=dummy-web-login-phr-card | ||
| requestOtpForEnrollment=dummy-request-otp-for-enrollment | ||
| requestAuthByAbdm=dummy-request-auth-by-abdm | ||
| abhaEnrollByAadhaar=dummy-abha-enroll-by-aadhaar | ||
| printAbhaCard=dummy-print-abha-card | ||
| getAuthCertPublicKey=dummy-auth-cert-public-key | ||
| eAushadhiDispensePageSize=10 | ||
| patient-search-page-size=10 | ||
| generateOTPForCareContext=dummy-generate-otp-for-care-context | ||
| validateOTPForCareContext=dummy-validate-otp-for-care-context | ||
| addCareContext=dummy-add-care-context | ||
| getAbdmFacilityServicies=dummy-get-abdm-facility-services | ||
| nhm.agent.real.time.data.url=dummy-nhm-agent-url | ||
| everwellCalendarDuration=10 | ||
| callRetryConfiguration=3 | ||
| sms-username=dummy-sms-username | ||
| sms-password=dummy-sms-password | ||
| sms-entityid=dummy-sms-entityid | ||
| sms-consent-source-address=dummy-sms-consent-source-address | ||
| send-message-url=dummy-send-message-url | ||
| calibrationPageSize=10 | ||
| iemr.session.expiry.time.sec=3600 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.