README.md
# Thesis
Thesis is an Elixir/Phoenix hex package for quickly and easily adding content
editing to any page.
It's inspired by the [Rails gem](https://github.com/infinitered/thesis-rails) by
the same name and author.

## Installation and Configuration
1. Add thesis to your `mix.exs`:
```elixir
def deps do
[{:thesis, "~> 0.0.1"}]
end
def application do
[applications: [:thesis]]
end
```
2. Run `mix thesis.install`
This will add Thesis to your `package.json`, `config.exs`, generate
a migration, and generate an authorization module.
## Making Pages Editable
TODO
## Authorization
TODO