Skip to content

Commit

Permalink
update for dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmwoods committed Mar 27, 2019
1 parent 1d5c47d commit da2b496
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
* [Axon Server clustering](operations-guide/setting-up-axon-server/axon-server-clustering.md)
* [Multi-context](operations-guide/setting-up-axon-server/multi-context.md)
* [Command-line interface](operations-guide/setting-up-axon-server/command-line.md)
* [Development Mode](operations-guide/setting-up-axon-server/development-mode.md)
* [Production considerations](operations-guide/production-considerations/production-considerations.md)
* [Versioning Events](operations-guide/production-considerations/versioning-events.md)
* [Serializers](operations-guide/production-considerations/serializers.md)
Expand Down
1 change: 1 addition & 0 deletions operations-guide/setting-up-axon-server/command-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ For the Axon Server Standard edition the only supported commands are:
- users
- register-user
- delete-user
- delete-all-events (only in [Development Mode](../../operations-guide/setting-up-axon-server/development-mode.md))

Axon Server Enterprise edition supports these additional commands:

Expand Down
17 changes: 17 additions & 0 deletions operations-guide/setting-up-axon-server/development-mode.md
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

0 comments on commit da2b496

Please sign in to comment.