Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devmentors/FeedR
Microservices sample solution for YouTube videos services
https://github.com/devmentors/FeedR
microservices microservices-architecture microservices-demo
Last synced: 3 months ago
JSON representation
Microservices sample solution for YouTube videos services
- Host: GitHub
- URL: https://github.com/devmentors/FeedR
- Owner: devmentors
- License: mit
- Created: 2021-12-11T19:35:21.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T05:38:22.000Z (over 2 years ago)
- Last Synced: 2024-04-30T12:36:50.767Z (7 months ago)
- Topics: microservices, microservices-architecture, microservices-demo
- Language: C#
- Homepage: https://www.youtube.com/watch?v=spnBzawswik&list=PLqqD43D6Mqz0AIDkHqaZDKaEKXdfMiIAo
- Size: 50.8 KB
- Stars: 135
- Watchers: 13
- Forks: 25
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![FeedR](https://cdn.devmentors.io/img/assets/feedr.jpeg)](https://www.youtube.com/watch?v=spnBzawswik)
# FeedR
**Sample** (and rather **simple**) .NET6 **microservices** solution which acts as the data aggregator for the different feeds.
The **purpose** of this solution is to **explore** the latest framework and **play** with different patterns, tools & libraries that can be useful when building **distributed applications** (but not only).
The overall repository structure consists of the following projects located under `src` directory:- Gateway - API gateway providing a public facade for the underlying, internal services
- Aggregator - core service responsible for aggregating the data from different feeds
- Notifier - supporting service responsible for sending the notifications
- Feeds
- News - sample feed providing the worldwide news
- Quotes - sample feed providing the quotes (e.g. currency)
- Weather - sample feed providing the weather related data# Episodes
The **implementation process** can be found on our [DevMentors YouTube](https://www.youtube.com/playlist?list=PLqqD43D6Mqz0AIDkHqaZDKaEKXdfMiIAo) channel, where we publish the **videos** about building this project.
You can navigate through this repository via specific `episode` tags which are related to the videos.# Requirements
- [.NET 6.0 SDK](https://dotnet.microsoft.com/download/dotnet/6.0)
- [Docker](https://docs.docker.com/get-docker)To start the infrastructure via Docker, type the following command at the `compose` directory:
`docker compose -f infrastructure.yml up -d`
Each application can be started separately using dotnet CLI or your favorite IDE.