Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linktosriram/deck
High performance backend server for building user-interface on top of CloudFoundry platform
https://github.com/linktosriram/deck
cloud-foundry cockpit high-performance ui
Last synced: 5 days ago
JSON representation
High performance backend server for building user-interface on top of CloudFoundry platform
- Host: GitHub
- URL: https://github.com/linktosriram/deck
- Owner: linktosriram
- License: mit
- Created: 2019-05-05T17:32:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:32:57.000Z (11 months ago)
- Last Synced: 2024-04-17T14:08:22.054Z (7 months ago)
- Topics: cloud-foundry, cockpit, high-performance, ui
- Language: Kotlin
- Size: 72.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deck
High performance backend server for building user-interface on top of CloudFoundry platform
## Usage
Fill in the required details in [application.yaml](src/main/resources/application.yaml)
```yaml
app:
cf:
api-endpoint: # CloudFoundry API endpoint
oauth-endpoint: # CloudFoundry authorization endpoint + /oauth/token
username: # CloudFoundry username
password: # CloudFoundry password
``````
$ ./gradlew clean bootRun
```## Performance
With [cf-cli](https://github.com/cloudfoundry/cli):
```
$ time cf services
...
...
real 0m28.805s
...
```With deck:
```
$ time curl --request GET \
--url /api/v1/spaces//service-instances \
--compressed
...
...
real 0m6.257s
...
```## License
This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.