Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/drewolson/blox
- Owner: drewolson
- Created: 2015-03-06T14:34:25.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-12T13:21:01.000Z (over 8 years ago)
- Last Synced: 2024-05-09T21:50:12.691Z (8 months ago)
- Language: Elixir
- Homepage:
- Size: 134 KB
- Stars: 19
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.