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-runner/src | |
| 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-runner/src')
| -rw-r--r-- | opendc-web/opendc-web-runner/src/cli/kotlin/org/opendc/web/runner/Main.kt (renamed from opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/Main.kt) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/Main.kt b/opendc-web/opendc-web-runner/src/cli/kotlin/org/opendc/web/runner/Main.kt index 7bf7e220..348a838c 100644 --- a/opendc-web/opendc-web-runner/src/main/kotlin/org/opendc/web/runner/Main.kt +++ b/opendc-web/opendc-web-runner/src/cli/kotlin/org/opendc/web/runner/Main.kt @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 AtLarge Research + * Copyright (c) 2022 AtLarge Research * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal |
