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

https://github.com/babilonczyk/phoenix-crud

A simple application written in phoenix. The goal was to learn basics of how phoenix framework works.
https://github.com/babilonczyk/phoenix-crud

crud elixir phoenix

Last synced: 4 months ago
JSON representation

A simple application written in phoenix. The goal was to learn basics of how phoenix framework works.

Awesome Lists containing this project

README

          

# Phoenix Crud App

This is a small phoenix project to test the grounds. It implements crud actions for a blog post.

To start:
* set up correct local postgres credentials in `config/dev.exs`
* Run `mix setup` to install and setup dependencies
* create db `mix ecto.create`
* run migrations `mix ecto.migrate`
* Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`

Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.