BloGo is a lightweight static blog engine built with Go.
The engine automatically reads and syncs the blog data from a seperated blog repo storing all your articles, like the demo repo.
- Install Docker Engine.
- Install Docker Compose.
- Fork this repo to make some necessary changes later.
- Clone the repo and checkout to the recommended
main
branch.
- Create the
~/.blogo
directory, which will contain all the configuration files for our website. - Create the
~/.blogo/config.toml
file. You may need to reference to the defaultconfig/config.toml
file in the project. - Create the
~/.blogo/docker.env
file to provide the needed environment variables. Currently needed variables are for the mysql docker image. - Provide the
~/.blogo/favicon.ico
and~/.blogo/logo.svg
files. - Add a webhook
https://${your.blog.domain}/webhook/github
in the settings page of your blog repo. - Replace the domains, which you want to enable HTTPS, in the
script/init-letsencrypt.sh
file in the project.
Run the following commands at the root directory of this project.
# Fetche and ensure the renewal of a Let’s Encrypt certificate.
$ ./script/init-letsencrypt.sh
# Create and build the docker services to launch the application.
$ docker-compose up --build
The blogo
application then will be powered up by launching some necessary docker containers.
These containers are from the docker services defined in the compose.yaml
file:
- blogod: the main web application as the blog engine.
- mysql: the relational database to store blog articles, comments, website statistics data, etc.
- nginx: the reverse proxy server sitting between the browsers and the blog engine.
- certbot: the tool to manage Let's Encrypt certificates, which enables the HTTPS for our blog website.
BloGo takes advantage of many brilliant open source libraries which save me a lot of works.
Check out the go.mod
file to get a full list of them.