Packages

obelisk is a static site generator for Elixir. It is inspired by jekyll, with the goal of being fast and simple to use and extend.

Current section

Files

Jump to
obelisk lib obelisk tasks init.ex
Raw

lib/obelisk/tasks/init.ex

defmodule Obelisk.Tasks.Init do
@moduledoc """
This task initializes a manapot project.
## Switches
None.
"""
def run(_) do
Obelisk.Site.initialize
end
end