File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,3 +23,14 @@ fhir-url=@env.FHIR_API@
2323spring.redis.host =@env.REDIS_HOST@
2424
2525cors.allowed-origins =@env.CORS_ALLOWED_ORIGINS@
26+
27+ # Elasticsearch Configuration
28+ elasticsearch.host =@env.ELASTICSEARCH_HOST@
29+ elasticsearch.port =@env.ELASTICSEARCH_PORT@
30+ elasticsearch.username =@env.ELASTICSEARCH_USERNAME@
31+ elasticsearch.password =@env.ELASTICSEARCH_PASSWORD@
32+ elasticsearch.index.beneficiary =@env.ELASTICSEARCH_INDEX_BENEFICIARY@
33+
34+ # Enable/Disable ES (for gradual rollout)
35+ elasticsearch.enabled =@env.ELASTICSEARCH_ENABLED@
36+
Original file line number Diff line number Diff line change @@ -22,3 +22,15 @@ fhir-url=${FHIR_API}
2222spring.redis.host =${REDIS_HOST}
2323
2424cors.allowed-origins =${CORS_ALLOWED_ORIGINS}
25+
26+
27+ # Elasticsearch Configuration
28+ elasticsearch.host =${ELASTICSEARCH_HOST}
29+ elasticsearch.port =${ELASTICSEARCH_PORT}
30+ elasticsearch.username =${ELASTICSEARCH_USERNAME}
31+ elasticsearch.password =${ELASTICSEARCH_PASSWORD}
32+ elasticsearch.index.beneficiary =${ELASTICSEARCH_INDEX_BENEFICIARY}
33+
34+ # Enable/Disable ES (for gradual rollout)
35+ elasticsearch.enabled =${ELASTICSEARCH_ENABLED}
36+
Original file line number Diff line number Diff line change @@ -19,3 +19,14 @@ fhir-url=http://localhost:8093/
1919# Redis Config
2020spring.redis.host =localhost
2121cors.allowed-origins =http://localhost:*
22+
23+ # Elasticsearch Configuration
24+ elasticsearch.host =localhost
25+ elasticsearch.port =9200
26+ elasticsearch.username =elastic
27+ elasticsearch.password =piramalES
28+ elasticsearch.index.beneficiary =beneficiary_index
29+
30+ # Enable/Disable ES (for gradual rollout)
31+ elasticsearch.enabled =true
32+
Original file line number Diff line number Diff line change 11server.port =8094
22# DataSource settings: set here your own configurations for the database
3- spring.datasource.url =jdbc:mysql://localhost:3306/db_iemr
3+ spring.datasource.url =jdbc:mysql://localhost:3306/db_identity
44spring.datasource.username =root
55spring.datasource.password =1234
66spring.datasource.driver-class-name =com.mysql.jdbc.Driver
You can’t perform that action at this time.
0 commit comments