Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/drewolson/blox

Example app using Phoenix and Ecto. Obviously it's a blog. An ugly one.
https://github.com/drewolson/blox

Last synced: about 1 month ago
JSON representation

Example app using Phoenix and Ecto. Obviously it's a blog. An ugly one.

Awesome Lists containing this project

README

        

# Blox

[![Build Status](https://travis-ci.org/drewolson/blox.svg?branch=master)](https://travis-ci.org/drewolson/blox)

It's a blog?!

## Setup

```bash
mix do deps.get, db.reset
npm install
```

## Run it

```bash
mix phoenix.server
```

## Test it

```bash
MIX_ENV=test mix db.reset
mix test
```

## Assets

Phoenix will use `brunch` to compile assets when you run `mix phoenix.server`. If you'd like to manually compile the assets, run `npm run build`.

## Assumptions

Blox assumes you're running postgres locally on the default port and that your current user can create databases.