Skip to content

Commit

Permalink
change Dolittle Platform -> Aigonix Platform
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasEkeli committed Jun 26, 2023
1 parent d562f2a commit 8a43295
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Source/content/en/docs/concepts/event_sourcing.md
@@ -1,6 +1,6 @@
---
title: Event Sourcing
description: Overview of Event Sourcing in the Dolittle Platform
description: Overview of Event Sourcing with the Dolittle SDK and Runtime
keywords: Overview, Domain Events, Event Sourcing, Event Store, Log
weight: 30
---
Expand Down
2 changes: 1 addition & 1 deletion Source/content/en/docs/concepts/streams.md
Expand Up @@ -13,7 +13,7 @@ An event stream is simply a stream of events. Each stream is uniquely identified

As streams are append-only, an event can be uniquely identified by its position in a stream, including in the [event log]({{< ref "event_sourcing.md#event-log" >}}).

Event streams are perhaps the most important part of the Dolittle platform. To get a different and more detailed perspective on streams, please read our section on [event sourcing and streams]({{< ref "event_sourcing.md#streams" >}}).
Event streams are perhaps the most important part of the Dolittle Runtime. To get a different and more detailed perspective on streams, please read our section on [event sourcing and streams]({{< ref "event_sourcing.md#streams" >}}).

## Rules

Expand Down
2 changes: 1 addition & 1 deletion Source/content/en/docs/contributing/_index.md
@@ -1,6 +1,6 @@
---
title: Contributing
description: Contribute to the Dolittle platform
description: Contribute to the Dolittle open-source framework
author: Dolittle
keywords: contribute, guidelines
weight: 90
Expand Down
2 changes: 1 addition & 1 deletion Source/content/en/docs/contributing/tooling/_index.md
@@ -1,6 +1,6 @@
---
title: Tooling
description: Tooling for Dolittle platform developers
description: Tooling for developers
author: Dolittle
keywords: contribute, tooling
weight: 1
Expand Down
4 changes: 2 additions & 2 deletions Source/content/en/docs/platform/_index.md
@@ -1,9 +1,9 @@
---
title: Platform
description: Overview of the Dolittles Platform
description: Overview of the Aigonix Platform
keywords: Platform, PaaS, General
weight: 60
type: "space"
repository: https://github.com/dolittle/Documentation
---
Dolittle Platform is our PaaS(Platform-as-a-Service) solution for hosting your Dolittle microservices in the cloud.
Aigonix Platform is our PaaS(Platform-as-a-Service) solution for hosting your Dolittle microservices in the cloud.
6 changes: 3 additions & 3 deletions Source/content/en/docs/platform/deploy_an_application.md
@@ -1,6 +1,6 @@
---
title: Deploy an application
description: How to deploy an application in the Dolittle Platform
description: How to deploy an application in the Aigonix Platform
weight: 5
---
{{% pageinfo color="info" %}}
Expand All @@ -10,7 +10,7 @@ This guide is for the users of our [Platform]({{< ref "platform" >}}). If you ar
## Prerequisites

Familiar with the following:
- Docker containers
- Docker containers
- Kubernetes
- Microsoft Azure

Expand Down Expand Up @@ -68,7 +68,7 @@ az acr login -n <ACR Registry> --subscription <Subscription ID>

## Deployment

To deploy a new version of your application, follow these steps. For <Tag> use semantic versioning, e.g. "1.0.0".
To deploy a new version of your application, follow these steps. For <Tag> use semantic versioning, e.g. "1.0.0".


### Docker
Expand Down
2 changes: 1 addition & 1 deletion Source/content/en/docs/platform/faq.md
@@ -1,6 +1,6 @@
---
title: FAQ
description: Frequently asked questions about the Dolittle Platform
description: Frequently asked questions about the Aigonix Platform
weight: 20
---

Expand Down
6 changes: 3 additions & 3 deletions Source/content/en/docs/platform/requirements.md
@@ -1,13 +1,13 @@
---
title: Requirements
description: Requirements for running microservices in the Dolittle platform
description: Requirements for running microservices in the Aigonix platform
keywords: Platform, PaaS, Requirements
weight: 1
aliases:
- /platform/general/requirements/
---

To be compatible with the environment of the Dolittle platform, there are certain requirements we impose on your microservices.
To be compatible with the environment of the Aigonix platform, there are certain requirements we impose on your microservices.
If they are not met, your application might behave unexpectedly - or in the worst case - not work at all.
The following list of requirements is subject to change, but we will always notify you when you have an application running in our platform before making any changes.

Expand All @@ -16,7 +16,7 @@ To ensure data privacy, security and proper segregation of your tenant's data, o
This system controls access and connection settings for resources on a per request basis and will provide your microservice with the necessary information for accessing these resources programmatically.
The connection information will not be the same as when developing locally, so you must not embed connection settings in your code.

This requirement applies to read and write data to databases or files, or while making API-calls to services, both to internal resources provided by the Dolittle platform and external 3rd party services.
This requirement applies to read and write data to databases or files, or while making API-calls to services, both to internal resources provided by the Aigonix platform and external 3rd party services.

### 2. All your applications external endpoints must be configured and exposed through the platform
For the resource management system to work, and to protect your application and users from data leakage, we encrypt and authenticate all interactions with your application through the platform.
Expand Down
4 changes: 2 additions & 2 deletions Source/content/en/docs/platform/update_configurations.md
@@ -1,6 +1,6 @@
---
title: Update configurations
description: How to update configuration files in the Dolittle Platform
description: How to update configuration files in the Aigonix Platform
weight: 10
---

Expand Down Expand Up @@ -60,7 +60,7 @@ data:
}
```

The files represent configmap resources in Kubernetes. We recommend that you store the files in a version control system(VCS) of your choice.
The files represent configmap resources in Kubernetes. We recommend that you store the files in a version control system(VCS) of your choice.

## Purpose

Expand Down
4 changes: 2 additions & 2 deletions Source/content/en/docs/platform/update_secrets.md
@@ -1,6 +1,6 @@
---
title: Update secrets
description: How to update secrets in the Dolittle Platform
description: How to update secrets in the Aigonix Platform
weight: 15
---

Expand Down Expand Up @@ -43,7 +43,7 @@ data:
```


The files represent the [Secrets](https://kubernetes.io/docs/concepts/configuration/secret/) -resource in Kubernetes. We recommend that you store the files in a version control system(VCS) of your choice.
The files represent the [Secrets](https://kubernetes.io/docs/concepts/configuration/secret/) -resource in Kubernetes. We recommend that you store the files in a version control system(VCS) of your choice.

## Purpose

Expand Down
4 changes: 2 additions & 2 deletions Source/content/en/docs/tutorials/_index.md
@@ -1,7 +1,7 @@
---
title: Tutorials
description: Tutorials for the Dolittle platform
keywords: overview, dolittle, why dolittle, what is dolittle,
description: Tutorials for the Dolittle open-source framework
keywords: overview, dolittle, why dolittle, what is dolittle,
author: Dolittle
weight: 5
type: "space"
Expand Down
2 changes: 1 addition & 1 deletion Source/content/en/docs/tutorials/getting_started.md
@@ -1,6 +1,6 @@
---
title: Getting started
description: Get started with the Dolittle platform
description: Get started with the Dolittle open-source framework
keywords: Learning, Quickstart, setup, prerequisites, how to, guide, walkthrough, csharp, c#, dotnet, .NET, typescript, javascript
author: joel, jakob, sindre
weight: 1
Expand Down

0 comments on commit 8a43295

Please sign in to comment.