Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ara-framework/nova-cluster
Nova Cluster helps to request views from different hypernova servers using only one endpoint.
https://github.com/ara-framework/nova-cluster
aggregator hypernova microfrontends
Last synced: 4 days ago
JSON representation
Nova Cluster helps to request views from different hypernova servers using only one endpoint.
- Host: GitHub
- URL: https://github.com/ara-framework/nova-cluster
- Owner: ara-framework
- License: mit
- Created: 2019-04-28T07:24:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T03:10:03.000Z (over 4 years ago)
- Last Synced: 2024-06-20T15:41:43.236Z (7 months ago)
- Topics: aggregator, hypernova, microfrontends
- Language: Go
- Homepage: https://hub.docker.com/r/marconi1992/nova-cluster
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nova Cluster
Nova Cluster helps to request views from different hypernova servers using only one endpoint.## Views File
Nova Cluster needs a configuration file `views.json` in order to map the views and their hypernova servers.
```json
{
"Navbar": {
"server": "http://localhost:3031/batch"
},
"Home": {
"server": "http://localhost:3030/batch"
}
}
```## Using Hypernova Proxy with Docker
```Dockerfile
FROM marconi1992/nova-cluster:1.0.0COPY views.json views.json
```