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.
- Host: GitHub
- URL: https://github.com/babilonczyk/phoenix-crud
- Owner: babilonczyk
- Created: 2023-06-18T16:13:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-20T14:05:32.000Z (over 2 years ago)
- Last Synced: 2023-08-26T20:48:00.971Z (over 2 years ago)
- Topics: crud, elixir, phoenix
- Language: Elixir
- Homepage:
- Size: 302 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.