diff --git a/docs/docs/concepts/eventstore/overview.md b/docs/docs/concepts/eventstore/overview.md index a11e288b06..8a7c9a22bd 100644 --- a/docs/docs/concepts/eventstore/overview.md +++ b/docs/docs/concepts/eventstore/overview.md @@ -22,8 +22,9 @@ The data is stored as events in an append-only log. ## Benefits -Audit: You have a built-in audit trail that tracks all changes over an unlimited period of time. -Travel back in time: With our way of storing data we can show you all of your resources at a given point in time. +- Audit: You have a built-in audit trail that tracks all changes over an unlimited period of time. +- Travel back in time: With our way of storing data we can show you all of your resources at a given point in time. +- Future Projections: It is easy to compute projections with new business logic by replaying all events since installation. ## Definitions @@ -43,7 +44,7 @@ Possible Events: ### Aggregate An aggregate consist of multiple events. All events together in will lead to the current state of the aggregate. -The aggregate can be compared with an object or a resources. +The aggregate can be compared with an object or a resources. Aggregates define transaction boundaries. ### Projections diff --git a/docs/docs/guides/installation/configure/configure.mdx b/docs/docs/guides/installation/configure/configure.mdx index 08ebf4130c..33b9384f05 100644 --- a/docs/docs/guides/installation/configure/configure.mdx +++ b/docs/docs/guides/installation/configure/configure.mdx @@ -68,7 +68,7 @@ This is the IAM admin users login according to your configuration in the [exampl - Read more about [the login process](../../manuals/user-login). - If you want to run ZITADEL in production, you most certainly need to [customize your own domain](./custom-domain). - Check out all possible [runtime configuration properties and their defaults in the source code](https://github.com/zitadel/zitadel/blob/v2-alpha/cmd/defaults.yaml) -- Check out all possible [setup step configuration properties and their defaults in the source code](https://github.com/zitadel/zitadel/blob/v2-alpha/cmd/adminn/setup/steps.yaml) +- Check out all possible [setup step configuration properties and their defaults in the source code](https://github.com/zitadel/zitadel/blob/v2-alpha/cmd/setup/steps.yaml) :::caution diff --git a/docs/docs/guides/installation/run/compose.mdx b/docs/docs/guides/installation/run/compose.mdx index 5337960fbe..86b63263f9 100644 --- a/docs/docs/guides/installation/run/compose.mdx +++ b/docs/docs/guides/installation/run/compose.mdx @@ -4,7 +4,7 @@ By executing the commands below, you will download the file [docker-compose.yaml ```bash # Download the docker compose example configuration. For example: -wget https://raw.githubusercontent.com/zitadel/zitadel/v2-alpha/docs/docs/guides/installation/get-started/docker-compose.yaml +wget https://raw.githubusercontent.com/zitadel/zitadel/v2-alpha/docs/docs/guides/installation/run/docker-compose.yaml # Run the database and application containers docker compose up --detach