https://github.com/mzelenak-dev/micro-blog
A very simple blog service using micro service architecture on the backend
https://github.com/mzelenak-dev/micro-blog
Last synced: 12 days ago
JSON representation
A very simple blog service using micro service architecture on the backend
- Host: GitHub
- URL: https://github.com/mzelenak-dev/micro-blog
- Owner: mzelenak-dev
- Created: 2025-09-17T22:13:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-10-01T11:37:17.000Z (10 months ago)
- Last Synced: 2025-10-01T13:23:59.368Z (10 months ago)
- Language: JavaScript
- Size: 1.62 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple React frontend for creating text posts and comments to play with microservice architecture, Docker, Kubernetes and more.
Assumes you have localhost dev server mapped to posts.com in your `/etc/hosts` file.
```
127.0.0.1 posts.com
```
visit posts.com in your browser to use public routes
- run skaffold to build all the images, host them on docker hub, start deployments and services and generate container pods
- get the list of existing pods in local dev cluster
- run logs of whatever service in cluster to see any server logs (likely just event-bus)
```
$ skaffold dev
$ kubectl get pods
$ kubectl logs ${name of event bus, moderation, etc... pod}
```