Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doylemark/cooper
Web interface for cloudsimplus simulations
https://github.com/doylemark/cooper
Last synced: 12 days ago
JSON representation
Web interface for cloudsimplus simulations
- Host: GitHub
- URL: https://github.com/doylemark/cooper
- Owner: doylemark
- Created: 2024-10-10T21:10:04.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-22T14:30:13.000Z (about 1 month ago)
- Last Synced: 2024-12-19T13:49:31.282Z (16 days ago)
- Language: TypeScript
- Homepage:
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cooper - Cloudsim Interface
This is a web interface for exploring [cloudsimplus](https://github.com/cloudsimplus/cloudsimplus) simulations.
This repository includes both a Java API for collecting simulation data from cloudsimplus and a React web interface.
### Gitlab Mirror
This repository is [mirrored on Gitlab](https://csgitlab.ucd.ie/doylemark/cooper) however the [primary remote](https://github.com/doylemark/cooper) is Github.### Building the library
1. Start the postgres container
```zsh
docker compose up -d
```
2. Install Dependencies
```zsh
sh mvnw install
```
3. Migrate the database
```zsh
sh mvnw flyway:migrate
```
4. Run the Maven build again to generate JOOQ models from the database schema
```zsh
sh mvnw install
```