diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-05-18 18:17:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-18 18:17:03 +0200 |
| commit | 61b6550d7a476ab1aae45a5b9385dfd6ca4f6b6f (patch) | |
| tree | 8632e8e26e409b6909a0bd90488356b1dcd70ba6 /opendc-web/opendc-web-api/src/main/resources/application-prod.properties | |
| parent | 00b5ee4bd423d8d9682a9ed9cd2af7c19a715459 (diff) | |
| parent | fb88cf197d9fe814e9692e7dafdc0d31b940acbc (diff) | |
merge: Add embedded experiment runner for dev mode (#87)
This pull request adds a new Quarkus extension that starts an embedded
experiment runner while the user is in development mode. This allows users
to deploy the entire OpenDC stack by using the `quarkusDev` command.
By default, the experiment runner will only run experiments on one thread.
Though, this setting is configurable.
## Implementation Notes :hammer_and_pick:
* Use correct group for Gradle modules
* Support client construction without AuthController
* Move runner CLI into separate configuration
* Remove module nesting in Quarkus extension
* Add Quarkus extension for OpenDC runner
* Add initial server distribution
## Breaking API Changes :warning:
* N/A
Diffstat (limited to 'opendc-web/opendc-web-api/src/main/resources/application-prod.properties')
| -rw-r--r-- | opendc-web/opendc-web-api/src/main/resources/application-prod.properties | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-api/src/main/resources/application-prod.properties b/opendc-web/opendc-web-api/src/main/resources/application-prod.properties index 8f523d76..cebcdaab 100644 --- a/opendc-web/opendc-web-api/src/main/resources/application-prod.properties +++ b/opendc-web/opendc-web-api/src/main/resources/application-prod.properties @@ -28,5 +28,6 @@ quarkus.datasource.jdbc.url=${OPENDC_DB_URL} quarkus.hibernate-orm.dialect=org.hibernate.dialect.PostgreSQL95Dialect quarkus.hibernate-orm.database.generation=validate -# Disable OpenDC web UI +# Disable OpenDC web UI and runner quarkus.opendc-ui.include=false +quarkus.opendc-runner.include=false |
