@jtl-software/cloud-app-template-backend-dotnet 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +12 -0
  3. package/package.json +14 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jtl/cloud-app-template-backend-dotnet
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#9](https://github.com/jtl-software/cloud-apps-cli/pull/9) [`5697636`](https://github.com/jtl-software/cloud-apps-cli/commit/5697636be8f917639539f72fbffb9165a2de01b1) Thanks [@tobilen](https://github.com/tobilen)! - Add required meta information, merge \_package.json and add readme for templates
8
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### Patch Changes
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # .NET Backend Template
2
+
3
+ ASP.NET Core 8 + FastEndpoints + JWT verification (Ed25519)
4
+
5
+ ## Configuration
6
+
7
+ Copy `appsettings.Local.json.example` to `appsettings.Local.json` and add your Client ID and Secret.
8
+
9
+ ## Scripts
10
+
11
+ - `dotnet run` — runs on port 3005
12
+ - Swagger UI at `/swagger` in development mode
package/package.json CHANGED
@@ -1,8 +1,20 @@
1
1
  {
2
2
  "name": "@jtl-software/cloud-app-template-backend-dotnet",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "description": ".NET (ASP.NET Core + FastEndpoints) backend template for JTL Platform cloud apps"
7
+ "description": ".NET (ASP.NET Core + FastEndpoints) backend template for JTL Platform cloud apps",
8
+ "cloudAppTemplate": {
9
+ "type": "backend",
10
+ "label": ".NET",
11
+ "hint": "ASP.NET Core + FastEndpoints",
12
+ "extraReplacements": {
13
+ "HelloWorldApp": "{{APP_NAME_PASCAL}}"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "dev": "dotnet run --project {{APP_NAME_PASCAL}}.Api",
18
+ "build": "dotnet build {{APP_NAME_PASCAL}}.Api"
19
+ }
8
20
  }