The Pharmacy POS System Backend is the server-side component of our comprehensive pharmacy management software. It is developed using Spring Boot, Java, Spring Security ,and Microservices Architecture
Apache License 2.0
5
stars
3
forks
source link
Removing unnecessary blank lines in entity classes #133
This pull request includes updates to the Prometheus configuration, CORS settings, and minor code cleanups in entity classes. The most important changes include adding new targets to the Prometheus configuration, refining CORS allowed origins, and removing unnecessary blank lines in entity classes.
This pull request includes updates to the Prometheus configuration, CORS settings, and minor code cleanups in entity classes. The most important changes include adding new targets to the Prometheus configuration, refining CORS allowed origins, and removing unnecessary blank lines in entity classes.
Configuration Updates:
pos-system/data/prometheus/config/prometheus.yml
: Added new targets to the Prometheus configuration to include additional localhost ports.CORS Settings Refinements:
pos-system/src/main/java/com/lifepill/possystem/config/CorsConfig.java
: Removed duplicate entries forhttp://localhost:3000
in the allowed origins list.pos-system/src/main/java/com/lifepill/possystem/config/SecurityConfiguration.java
: Updated the allowed origins list to remove duplicatehttp://localhost:3000
entry.Code Cleanups:
pos-system/src/main/java/com/lifepill/possystem/entity/BaseEntity.java
: Removed unnecessary blank line.pos-system/src/main/java/com/lifepill/possystem/entity/Branch.java
: Removed unnecessary blank lines.