An open API service indexing awesome lists of open source software.

https://github.com/fryse/fryse

Static Site Generator written in Elixir
https://github.com/fryse/fryse

elixir static-site-generator

Last synced: about 1 year ago
JSON representation

Static Site Generator written in Elixir

Awesome Lists containing this project

README

          

# Fryse

![Test Status](https://github.com/fryse/fryse/actions/workflows/tests.yml/badge.svg)

> Fryse is a Static Site Generator written in Elixir which aims to be generic and scriptable

## Installation

Make sure you have Elixir installed (1.8 or newer) and that `~/.mix/escripts` is in your PATH variable.

```
mix escript.install hex fryse
```

## Quickstart

Bootstrap a new project:

```
fryse new blog
cd blog
```

Generate site:

```
fryse build
```

Run generated site locally:

```
fryse serve
```