Skip to main content
The backend is a Spring Boot application, packaged as an executable JAR.

Build

The artifact is an executable JAR under target/.

Configuration

Local development config is at blog-backend/src/main/resources/application-dev.properties. For deployment you can also use the external config at:
Check at least:
  • MySQL host, user and password
  • token.secretKey
  • Actual URLs for blog.api, blog.cms and blog.view
  • Email and image storage settings

Run

Listens on 8090 by default. In production, run it under a process supervisor and write logs to conf/logs/.

Next steps