A simple web minimal blog engine. The goal is to just provide the totally necessary stuff to get the word out. The main workflow for wortpress is.
- Create admin user with
bb -m commands.user/create-admin <email> <password> - Go to
http://localhost:8080/loginand log in - Go to settings
http://localhost:8080/settingand chose primary color, secondary color and font (from google fonts) - Go to posts
http://localhost:8080/postand start writing.
You'll need a reverse proxy and a postgres database. A postgres container is already part of the project and can be started with docker-compose. The initial configs can be found in the src/config.clj Here you have to setup your postgres connection and the name of your blog.
After that you can setup the database with bb -m database.core/initialize-db.
After that you have to create an admin user with bb -m commands.user/create-admin <email> <password>
Now you are ready to go. The login can be found at /login.