Skip to content

Commit e29e4b2

Browse files
authored
Merge pull request #149 from Chrisyhjiang/normalization
Normalization
2 parents 0d71d2a + 47a799a commit e29e4b2

File tree

77 files changed

+423
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+423
-161
lines changed

samples/angular-express/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Title: Angular & Node.js
3737

3838
Short Description: A full-stack application using Angular for the frontend and Node.js with Socket.IO for the backend, containerized with Docker.
3939

40-
Tags: angular, nodejs, Socket.IO
40+
Tags: Angular, Node.js, Socket.IO
4141

42-
Languages: typescript, javascript
42+
Languages: TypeScript, JavaScript

samples/bullmq-bullboard-redis/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ To add a job to the queue, you can go to the `/add` route of the `api` service.
88

99
The `worker` service is the queue processor that will process the jobs added to the queue. You can see in the `compose.yaml` file that the `worker` service is set to scale to 2 instances. This means that there will be 2 workers processing jobs from the queue. You can set this to your desired number of workers, but we wanted to show how you can increase the number of workers to handle more jobs.
1010

11-
1211
## Prerequisites
1312

1413
1. Download <a href="https://github.com/defang-io/defang">Defang CLI</a>
@@ -21,7 +20,6 @@ The `worker` service is the queue processor that will process the jobs added to
2120
3. Type `defang compose up` in the CLI.
2221
4. Your app will be running within a few minutes.
2322

24-
2523
## Local Development
2624

2725
1. Run `docker compose -f compose.dev.yaml up`
@@ -34,4 +32,4 @@ Short Description: A sample project with BullMQ, BullBoard, and Redis.
3432

3533
Tags: BullMQ, BullBoard, Redis, Express, Node.js, Message Queue
3634

37-
Languages: nodejs, javascript
35+
Languages: Node.js, JavaScript

samples/csharp-dotnet/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Title: ASP.NET Core & JavaScript Task Manager
3636

3737
Short Description: A task manager using ASP.NET Core for the backend and JavaScript for the frontend, containerized with Docker.
3838

39-
Tags: aspnetcore, javascript, Docker
39+
Tags: ASP.NET Core, JavaScript, C#
4040

41-
Languages: csharp, javascript
41+
Languages: C#, JavaScript
120 KB
Binary file not shown.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v8.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v8.0": {
9+
"c#-dotnet/1.0.0": {
10+
"runtime": {
11+
"c#-dotnet.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"c#-dotnet/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}
4.5 KB
Binary file not shown.
10.5 KB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net8.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "8.0.0"
7+
},
8+
"configProperties": {
9+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
10+
}
11+
}
12+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// <autogenerated />
2+
using System;
3+
using System.Reflection;
4+
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
120 KB
Binary file not shown.

0 commit comments

Comments
 (0)