• Stars
    star
    305
  • Rank 131,614 (Top 3 %)
  • Language
    Elixir
  • License
    MIT License
  • Created over 7 years ago
  • Updated 12 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Static website generator for Elixir fans

Serum

Build Status Coverage Status

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.

Getting Started

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.

LICENSE

Copyright (c) 2022 Eunbin Jeong (Dalgona.) [email protected]

MIT License. Read LICENSE for the full text.