Farbic API Service based on L8AI framework, using DDD layered structure.
farbic-api/ ├── pom.xml ├── README.md ├── src/main/java/cn/l8ai/farbic/ │ ├── Application.java │ ├── core/ │ │ ├── config/ │ │ └── exception/ │ ├── api/ │ │ ├── controller/ │ │ └── dto/ │ ├── application/ │ ├── domain/ │ │ ├── aggregate/ │ │ ├── repository/ │ │ ├── service/ │ │ └── exception/ │ └── outbound/ ├── src/main/resources/ │ ├── application.yml │ └── application-dev.yml └── src/test/java/cn/l8ai/farbic/
mvn clean package -DskipTests java -jar target/farbic-api-1.0.0.jar --spring.profiles.active=dev
curl http://localhost:18080/api/health/ping curl http://localhost:18080/api/health/info
l8ai-web-starter and l8ai-openapi-starter.