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
- Host: GitHub
- URL: https://github.com/fryse/fryse
- Owner: fryse
- License: mit
- Created: 2018-01-21T18:21:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T17:40:27.000Z (over 4 years ago)
- Last Synced: 2025-04-12T08:41:47.298Z (about 1 year ago)
- Topics: elixir, static-site-generator
- Language: Elixir
- Homepage:
- Size: 145 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Fryse

> 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
```