forked from AxonIQ/reference-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gjmwoods
committed
Mar 27, 2019
1 parent
1d5c47d
commit da2b496
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
operations-guide/setting-up-axon-server/development-mode.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Development Mode | ||
|
||
You can start Axon Server in development mode which enables some features for development convenience. | ||
|
||
These features can be enabled by configuring the following property: | ||
|
||
```text | ||
axoniq.axonserver.devtools.enabled=true | ||
``` | ||
|
||
## Resetting Events | ||
|
||
Whilst creating new features it can be convenient to restore Axon Server to a clean state with no events stored. This can also be helpful when writing and running integration tests against your system. | ||
|
||
Resetting Axon Server can be done via the [CLI](../../operations-guide/setting-up-axon-server/command-line.md) as well as the UI and REST interface. | ||
|
||
> Note: This feature is disabled when Axon Server is running in cluster mode |