https://github.com/adzz/umbrellaexql
A template repo to quickly set up a graphql API umbrella project in elixir
https://github.com/adzz/umbrellaexql
absinthe absinthe-graphql elixir getting-started graphql phoenix template-repo
Last synced: 6 months ago
JSON representation
A template repo to quickly set up a graphql API umbrella project in elixir
- Host: GitHub
- URL: https://github.com/adzz/umbrellaexql
- Owner: Adzz
- Created: 2020-03-04T13:02:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-23T05:51:14.000Z (about 4 years ago)
- Last Synced: 2025-02-03T23:08:41.695Z (8 months ago)
- Topics: absinthe, absinthe-graphql, elixir, getting-started, graphql, phoenix, template-repo
- Language: Elixir
- Homepage: https://medium.com/@ItizAdz/structuring-umbrella-apps-in-elixir-79aebcb551de
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Umbrellexql
This is a starter app to quickly bootstrap a graphl API umbrella application. The easiest way is to click the green "Use this template" button above. Github will then create a repo for you that you can name what you like, with the same files and folders in this template. Then all you'll need to do is replace this:
```elixir
defmodule Umbrellexql.MixProject do
```With this:
```elixir
defmodule YourAppsName.MixProject do
```You can read about the approach I've taken here: [https://medium.com/@ItizAdz/structuring-umbrella-apps-in-elixir-79aebcb551de](https://medium.com/@ItizAdz/structuring-umbrella-apps-in-elixir-79aebcb551de)