Project URL:https://github.com/KevinLikesCodingMC/KeroshiBlog
A light personal blog system.
-
Provides a complete executable JAR file for quick start
-
Imports libraries including Bootstrap, KaTeX, marked, and CodeMirror
-
Supports multiple databases
-
Supports both Chinese and English
Install Java Development Kit 24 or higher installed.
Create a database. Supported databases include:
mysql
mariadb
oracle database
microsoft sqlserver
postgresql
h2database
Choose a version from the releases page and download the JAR file.
Create a configuration file blog.properties. The file structure should look like:
KeroshiBlog/
├── KeroshiBlog.jar
└── blog.properties
Then edit the configuration. Here's an example:
blog.name=Keroshi Blog
blog.lang=zh
blog.su_username=admin
blog.su_password=password
server.port=80
spring.datasource.url=jdbc:mysql://localhost:3306/testdb
spring.datasource.username=root
spring.datasource.password=password
Execute the following command:
java -jar KeroshiBlog.jarDocumentation is currently under development and will be available soon.