Infuse

Build Status Coverage Status

Simple filesystem web framework using Simplates. Inspired by Aspen. Using Plug

It is currently not ready for use in development or production.

Possible Installation

You can use Hex, to install the package:

  1. Add infuse to your list of dependencies in mix.exs:
```elixir
def deps do
[{:infuse, "~> 0.1.0"}]
end
```
  1. Ensure infuse is started before your application:
```elixir
def application do
[applications: [:infuse]]
end
```
  1. Figure out what's next, because I have no idea!

Application Config

config :infuse,
web_root: "example-www",
default_content_type: "text/html",
default_renderer: Infuse.Simplates.Renderers.EExRenderer
config :infuse, Infuse.HTTP.RequestHandler,
default_indicies: ['index.html', 'index.json', 'index',
'index.html.spt', 'index.json.spt', 'index.spt']

Credits & License

LICENSE

Entire inspiration and design is from https://github.com/AspenWeb/aspen.py