Mebe: The Minimalistic Elixir Blog Engine
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.
Find a file
2015-05-17 18:43:33 +03:00
apps Whoops, forgot to commit. All kinds of stuff here. 2015-05-17 18:43:33 +03:00
.gitignore Initial commit 2015-05-14 23:58:25 +03:00
mix.exs Initial commit 2015-05-14 23:58:25 +03:00
mix.lock Initial commit 2015-05-14 23:58:25 +03:00
README.md Initial commit 2015-05-14 23:58:25 +03:00

Mebe

Mebe -- the Minimalistic Elixir Blog Engine -- is a simple blog engine written in Elixir, using the Phoenix Framework.

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.