https://github.com/fairwindsops/yelb-appserver
Demo app backend
https://github.com/fairwindsops/yelb-appserver
Last synced: 2 days ago
JSON representation
Demo app backend
- Host: GitHub
- URL: https://github.com/fairwindsops/yelb-appserver
- Owner: FairwindsOps
- Created: 2024-09-13T01:31:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-19T16:57:39.000Z (almost 2 years ago)
- Last Synced: 2026-02-13T07:38:38.682Z (4 months ago)
- Language: Ruby
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yelb Backend
Forked from https://github.com/mreferre/yelb/tree/master
## Original README
This is the application server. It's a Ruby/Sinatra application that exposes a number of APIs that are consumed by the UI (or via curl if you fancy that).
Originally this application was included in a single file (`yelb-appserver.rb`). This has been since refactored by extracting the single API definition in their separate adapters and modules. This made the transition to Lambda/Serverless easier (one lambda per API definition). This hasn't changed the other deployment models (containers and instances) because those models still launch the `yelb-appserver.rb` main application which imports the modules instead of having everything in a single file (as it was conceived originally).