Serum is a simple static website generator written in Elixir.
Like some of other static website generators, Serum focuses on blogging. And if you know how to write markdown documents and how to handle EEx templates, you can easily build your own website.
Use Mix to install the Serum installer archive from Hex.
$ mix archive.install hex serum_new
You can now use serum.new
Mix task to create a new Serum project.
$ mix serum.new /path/to/new_website
cd
into the new project directory and install Serum.
$ cd /path/to/new_website
$ mix do deps.get, deps.compile
Try building the website, or spin up the development server.
# Your website will be built at /path/to/new_website/site
$ mix serum.build
# Your website will be built and served at http://localhost:8080
$ mix serum.server
Please visit the official website for more guides and documentations.
Copyright (c) 2022 Eunbin Jeong (Dalgona.) [email protected]
MIT License. Read LICENSE
for the full text.