Skip to content

Commit

Permalink
Information about .NET added to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mykhailo Kutsybala committed Oct 14, 2024
1 parent ebb0cf8 commit 8e14b1b
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,18 @@ descriptions.
or higher version;
3) [Apache Maven 3.3.9](https://maven.apache.org/download.cgi "Apache Maven 3.3.9")
or higher version (for Java projects).
4) [SDK 8.0.402](https://dotnet.microsoft.com/en-us/download/dotnet/8.0 "SDK 8.0.402")
or higher version (for .NET projects).

#### 1.2.2 Installation on macOS

Detailed guide how to install Python you can find
[here](https://docs.python-guide.org/starting/install3/osx/ "here").
Also [here](https://www.baeldung.com/install-maven-on-windows-linux-mac "here")
you can find detailed guild how to install
the [latest Apache Maven](https://maven.apache.org/download.cgi "latest Apache Maven").
the [latest Apache Maven](https://maven.apache.org/download.cgi "latest Apache Maven").
.NET installation guide can be found [here](https://learn.microsoft.com/en-us/dotnet/core/install/macos ".NET installation guide"), it is needed if you plan to work with runtime `.NET`.


1. Pull the project
```shell
Expand Down Expand Up @@ -67,7 +71,8 @@ Detailed guide how to install Python you can
find [here](https://docs.python-guide.org/starting/install3/linux/ "here").
Also [here](https://www.baeldung.com/install-maven-on-windows-linux-mac "here")
you can find detailed guild how to install
the [latest Apache Maven](https://maven.apache.org/download.cgi "latest Apache Maven").
the [latest Apache Maven](https://maven.apache.org/download.cgi "latest Apache Maven").
.NET installation guide can be found [here](https://learn.microsoft.com/en-us/dotnet/core/install/linux ".NET installation guide"), it is needed if you plan to work with runtime `.NET`.

1. Pull the project
```shell
Expand Down Expand Up @@ -98,6 +103,7 @@ find [here](https://docs.python-guide.org/starting/install3/win/ "here").
Also [here](https://www.baeldung.com/install-maven-on-windows-linux-mac "here")
you can find detailed guild how to install
the [latest Apache Maven](https://maven.apache.org/download.cgi "latest Apache Maven").
.NET installation guide can be found [here](https://learn.microsoft.com/en-us/dotnet/core/install/windows ".NET installation guide"), it is needed if you plan to work with runtime `.NET`.

1. Pull the project
```shell
Expand Down Expand Up @@ -218,7 +224,7 @@ lambda function except business logic. Command example:
```shell
syndicate generate lambda
--name $lambda_name_1
--runtime python|java|nodejs
--runtime python|java|nodejs|dotnet
--project_path $project_path
```

Expand Down Expand Up @@ -293,6 +299,21 @@ created for different runtimes:
└── ...
```

* for .NET

```
.
├── $project_path
│ └── dnapp
│ └── lambdas
│ └── $lambda_name
│ ├── deployment_resources.json
│ ├── lambda_config.json
│ ├── Function.cs
│ └── Function.csproj
└── ...
```

Command sample:
```shell
syndicate generate lambda --name DemoLambda --runtime java --project_path $(pwd)
Expand Down

0 comments on commit 8e14b1b

Please sign in to comment.