Skip to content

Commit 44a2989

Browse files
committed
Update master references to main
1 parent 32633f0 commit 44a2989

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ After this adjust the code to fit the purpose of your own business problem/app.
1313
### Prerequisites
1414

1515
A linux docker container is used for the build and deployment process of the app.
16-
So besides docker the only thing you need on your local development system is a
16+
So besides docker the only thing you need on your local development system is a
1717
git client and an editor or IDE for C#.
1818

19-
To develop a d.velop cloud app you will need to install [.NET Core SDK 6.0](https://dotnet.microsoft.com/download/dotnet-core/6.0). Newer versions of the SDK will also work, but keep in mind, that AWS Lambda will only [support LTS versions](https://github.com/aws/aws-lambda-dotnet) of `.NET Core`.
19+
To develop a d.velop cloud app you will need to install [.NET Core SDK 6.0](https://dotnet.microsoft.com/download/dotnet-core/6.0). Newer versions of the SDK will also work, but keep in mind, that AWS Lambda will only [support LTS versions](https://github.com/aws/aws-lambda-dotnet) of `.NET Core`.
2020

2121
If you use Microsoft Visual Studio you will need "ASP.NET and web development", ".NET desktop development" and ".NET Core cross-platform development" workloads installed.
2222

@@ -55,11 +55,11 @@ The prefix can be selected during the registration process in d.velop cloud.
5555
If you choose a provider prefix which corresponds to your company name or an abbreviation of the company name
5656
it's very likely that it is available when you later register your app in d.velop cloud.
5757

58-
For example if your company is named *Super Duper Software Limited* and the domain of your app
58+
For example if your company is named *Super Duper Software Limited* and the domain of your app
5959
is *employees applying for vacation* your app should be named
60-
something like `superduperltd-vacationprocess`App. Note that the `App` suffix isn't used in the configuration files.
60+
something like `superduperltd-vacationprocess`App. Note that the `App` suffix isn't used in the configuration files.
6161

62-
Apps belonging to the core d.velop cloud platform don't have a provider prefix.
62+
Apps belonging to the core d.velop cloud platform don't have a provider prefix.
6363

6464
Use the `rename` target to rename your app:
6565

@@ -80,12 +80,12 @@ redeployment of the AWS resources which takes some time.**
8080
**Please read [Rename the app](#rename-the-app) before you proceed with the deployment.**
8181

8282
You need an AWS Account to deploy your app. At the time of writing some of the AWS services are
83-
free to use for a limited amount of time and workload.
83+
free to use for a limited amount of time and workload.
8484
Check the [Free Tier](https://aws.amazon.com/free/) offering from AWS for the current conditions.
8585

8686
Manually create an IAM user with
87-
the appropriate rights to create the AWS resources defined by your terraform configuration.
88-
You could start with a user who has the `arn:aws:iam::aws:policy/AdministratorAccess` policy to start quickly,
87+
the appropriate rights to create the AWS resources defined by your terraform configuration.
88+
You could start with a user who has the `arn:aws:iam::aws:policy/AdministratorAccess` policy to start quickly,
8989
but you **should definitely restrict the rights of that IAM user to a minimum as soon as you go into production**.
9090

9191
Configure your AWS credentials by using one of the methods described in
@@ -106,12 +106,12 @@ export AWS_ACCESS_KEY_ID=<YOUR-ACCESS-KEY-ID>
106106
export AWS_SECRET_ACCESS_KEY=<YOUR-SECRET-ACCESS-KEY>
107107
```
108108

109-
:warning: Please ensure, that these secrets are **never** available in any public repository.
109+
:warning: Please ensure, that these secrets are **never** available in any public repository.
110110

111-
The `environment` must not contain any secrets or set environmet variables itself.
111+
The `environment` must not contain any secrets or set environmet variables itself.
112112

113-
This file contains a list of keys for environmentvariables, which should be made available
114-
within the docker-Container. The variables are copied into the container by the
113+
This file contains a list of keys for environmentvariables, which should be made available
114+
within the docker-Container. The variables are copied into the container by the
115115
[docker-build.bat](docker-build.bat#L9) and [docker-build.sh](docker-build.sh#L8) scripts.
116116

117117
Deploy the lambda function and all other AWS Ressources like AWS API Gateway.
@@ -128,8 +128,8 @@ between deployments) and will be much quicker.
128128

129129
### Test your endpoint
130130

131-
The endpoint URLs are logged at the end of the deployment. Just invoke them in a browser to test your app.
132-
131+
The endpoint URLs are logged at the end of the deployment. Just invoke them in a browser to test your app.
132+
133133
```
134134
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
135135
@@ -145,7 +145,7 @@ endpoint = [
145145
To watch the current deployment state you can invoke
146146

147147
```
148-
docker-build show
148+
docker-build show
149149
```
150150

151151
at any time without changing your deployment.
@@ -164,7 +164,7 @@ for your hosted zone works before you use these modules**. Read the comments in
164164
This module uses *aws cloudfront* as a CDN for your static assets. Furthermore it allows you to define
165165
a custom domain for your assets instead of the s3 URL. Your deployment should work perfectly without this module.
166166

167-
#### api_custom_domain
167+
#### api_custom_domain
168168
This module allows you to define a custom domain for your app endpoints. A custom domain name is required
169169
as soon as you register your app in the d.velop cloud center because the base path of your app must
170170
begin with the name of your app. So instead of the default endpoints
@@ -211,7 +211,7 @@ There are two *different* implementations for this interface. One for AWS-lambda
211211

212212
#### `AwsLambda/EntryPoint`
213213

214-
Contains the EntryPoint for AWS-Lambda. This project will be used to bootstrap your AWS-Lambda application.
214+
Contains the EntryPoint for AWS-Lambda. This project will be used to bootstrap your AWS-Lambda application.
215215

216216
You can add AWS-lambda specific ASP.NET Core settings in [LambdaEntryPoint.cs](AwsLambda/EntryPoint/LambdaEntryPoint.cs)
217217

@@ -243,10 +243,10 @@ All WebApi-Controller are stored within `Controller`. The DTOs and ViewModel-cla
243243

244244
In this Folder are several projects to implement the interfaces defined by the `Domain` project.
245245

246-
You can separate different implementation for AWS lambda and a self-hosted environment by creating more than one project.
246+
You can separate different implementation for AWS lambda and a self-hosted environment by creating more than one project.
247247

248-
Example:
249-
AWS lambda uses a [DynamoDb (Fake)](Plugins/DynamoDbFake/DynamoDbVacationRepository.cs) to implement [IVacationRepository.cs](Domain/Vacation/IVacationRepository.cs).
248+
Example:
249+
AWS lambda uses a [DynamoDb (Fake)](Plugins/DynamoDbFake/DynamoDbVacationRepository.cs) to implement [IVacationRepository.cs](Domain/Vacation/IVacationRepository.cs).
250250

251251
The self hosted environment has no persistence and uses a [InMemoryDb](Plugins/InMemoryDb/InMemoryVacationRepository.cs) for testing.
252252

@@ -270,4 +270,4 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
270270

271271
Please read [LICENSE](LICENSE) for licensing information.
272272

273-
[![Build Status](https://travis-ci.com/d-velop/dvelop-app-template-cs.svg?branch=master)](https://travis-ci.com/d-velop/dvelop-app-template-cs)
273+
[![Build Status](https://travis-ci.com/d-velop/dvelop-app-template-cs.svg?branch=main)](https://travis-ci.com/d-velop/dvelop-app-template-cs)

0 commit comments

Comments
 (0)