https://github.com/danielberkompas/mithril_blog
An example blog using the proposed Mithril architecture
https://github.com/danielberkompas/mithril_blog
Last synced: 10 months ago
JSON representation
An example blog using the proposed Mithril architecture
- Host: GitHub
- URL: https://github.com/danielberkompas/mithril_blog
- Owner: danielberkompas
- Created: 2017-11-09T23:46:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-09T23:50:50.000Z (over 8 years ago)
- Last Synced: 2025-07-28T14:46:00.270Z (11 months ago)
- Language: Elixir
- Size: 23.4 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blog
The Elixir backend for Blog.
## Scripts
- bin/setup
-
Bash script that sets up the project, its dependencies, seeds, and runs
bin/testto verify everything is working. You should run this
script on the CI server.
- bin/test
-
Bash script which runs all the tests for the project. For example: credo,
dialyzer,compile --warnings-as-errors, run tests.
- bin/update
-
Bash script whichgit pulls, updates dependencies, runs
migrations, etc. It makes it easy for a mobile developer to pull down and
update everything.
- bin/reset
-
Bash script which resets everything and rerunsbin/setup
again.
- mix docs
-
Generates ExDoc documentation for the project.
## Architecture
Blog uses the Mithril code organization conventions.
- `apps/blog` contains the business logic for the application.
See its README and docs for details on its public API.
- `apps/blog_api` provides a GraphQL API.
- `apps/blog_web` contains a simple Phoenix application, which mounts the GraphQL API from `apps/blog_api`.