@jtl-software/cloud-app-template-backend-dotnet 0.0.2 → 0.0.4
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.
- package/CHANGELOG.md +12 -0
- package/HelloWorldApp.Api/Properties/launchSettings.json +2 -2
- package/README.md +12 -0
- package/package.json +19 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @jtl/cloud-app-template-backend-dotnet
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#12](https://github.com/jtl-software/cloud-apps-cli/pull/12) [`3eb5574`](https://github.com/jtl-software/cloud-apps-cli/commit/3eb5574d24ee8485939bc22ce1e9c8be9e343ccc) Thanks [@tobilen](https://github.com/tobilen)! - repair deployment, install all dependencies during npm install step
|
|
8
|
+
|
|
9
|
+
## 0.0.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
3
15
|
## 0.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"commandName": "Project",
|
|
6
6
|
"dotnetRunMessages": true,
|
|
7
7
|
"launchBrowser": false,
|
|
8
|
-
"applicationUrl": "http://localhost:
|
|
8
|
+
"applicationUrl": "http://localhost:3005",
|
|
9
9
|
"environmentVariables": {
|
|
10
10
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
11
11
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dotnetRunMessages": true,
|
|
16
16
|
"launchBrowser": true,
|
|
17
17
|
"launchUrl": "swagger",
|
|
18
|
-
"applicationUrl": "http://localhost:
|
|
18
|
+
"applicationUrl": "http://localhost:3005",
|
|
19
19
|
"environmentVariables": {
|
|
20
20
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
21
21
|
}
|
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,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jtl-software/cloud-app-template-backend-dotnet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
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
|
+
"runtimeVersions": {
|
|
13
|
+
"nodejs": "22.22.0",
|
|
14
|
+
"dotnet": "8.0.419"
|
|
15
|
+
},
|
|
16
|
+
"extraReplacements": {
|
|
17
|
+
"HelloWorldApp": "{{APP_NAME_PASCAL}}"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"postinstall": "if [ -d '{{APP_NAME_PASCAL}}.Api' ]; then dotnet restore {{APP_NAME_PASCAL}}.Api; fi",
|
|
22
|
+
"dev": "dotnet run --project {{APP_NAME_PASCAL}}.Api",
|
|
23
|
+
"build": "dotnet build {{APP_NAME_PASCAL}}.Api"
|
|
24
|
+
}
|
|
8
25
|
}
|