https://github.com/mcrumm/mystex_pizza_on_broadway
An example of batching for operations with Elixir and Broadway
https://github.com/mcrumm/mystex_pizza_on_broadway
broadway elixir elixir-examples
Last synced: about 1 month ago
JSON representation
An example of batching for operations with Elixir and Broadway
- Host: GitHub
- URL: https://github.com/mcrumm/mystex_pizza_on_broadway
- Owner: mcrumm
- License: apache-2.0
- Created: 2019-09-27T05:27:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-16T15:37:52.000Z (over 5 years ago)
- Last Synced: 2025-03-23T20:21:46.797Z (about 2 months ago)
- Topics: broadway, elixir, elixir-examples
- Language: Elixir
- Size: 27.3 KB
- Stars: 22
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MystexPizza on Broadway
Welcome to Mystex Pizza!
## Getting Started
To run the demo, first clone this repository:
git clone https://github.com/mcrumm/mystex_pizza_on_broadway
cd mystex_pizza_on_broadwayinstall dependencies:
mix deps.get
and setup the database:
mix ecto.setup
Then you can run the demo:
mix run --no-halt
> Note: You will occasionally see errors in the output. We're generating fake data, after all, and the Order IDs occasionally overlap.
Check the number of customers created:
mix pizza.customers
Check the number of orders created:
mix pizza.orders
Finally, you can clean up your database:
mix ecto.drop