This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe/README.md
2015-05-14 23:58:25 +03:00

17 lines
695 B
Markdown

# Mebe
Mebe -- _the Minimalistic Elixir Blog Engine_ -- is a simple blog engine written in [Elixir](https://elixir-lang.org),
using the [Phoenix Framework](http://www.phoenixframework.org/).
The engine consists of two parts, both in the `apps/` directory:
1. MebeEngine, which handles parsing the data files into an ETS (_Erlang Term Storage_) in-memory database, and
2. MebeWeb, which uses the Phoenix Framework to serve the blog data to clients.
## Installation for development
* `git clone`
* Copy `*.exs.dist`, removing the `.dist` ending and go through the configs.
* `npm install && bower install && gulp` to build the frontend.
* `mix phoenix.server` to run the development server.