https://github.com/camirmas/phoenix-umbrella
:umbrella: A boilerplate Elixir umbrella application that includes Phoenix and Ecto
https://github.com/camirmas/phoenix-umbrella
ecto elixir phoenix-framework umbrella
Last synced: 10 months ago
JSON representation
:umbrella: A boilerplate Elixir umbrella application that includes Phoenix and Ecto
- Host: GitHub
- URL: https://github.com/camirmas/phoenix-umbrella
- Owner: camirmas
- License: mit
- Created: 2017-06-05T01:58:34.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-19T22:36:27.000Z (about 9 years ago)
- Last Synced: 2024-10-29T09:19:31.174Z (over 1 year ago)
- Topics: ecto, elixir, phoenix-framework, umbrella
- Language: Elixir
- Homepage:
- Size: 63.5 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phoenix Umbrella :umbrella: [](https://travis-ci.org/camirmas/phoenix-umbrella)
> A boilerplate Elixir umbrella application that includes Phoenix and Ecto
### Description
This application separates out Ecto from Phoenix, opting to instead maintain the Repo/DB from a separate application. This allows Phoenix to only need to concern itself with handling and responding to requests, authentication, etc., and delegate database-related actions to a separate application underneath the umbrella.
### Instructions
The usual:
```bash
git clone git@github.com:camirmas/phoenix-umbrella.git
cd phoenix-umbrella
mix ecto.create
mix ecto.migrate
iex -S mix phoenix.server
```