Skip to content

Commit b266192

Browse files
added more detailed unit READMEs (#345)
1 parent 899a58b commit b266192

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ Akka.NET Bootcamp is all written in .NET 9 and leverages [Akka.Templates](https:
2121
1. [.NET 9 installed](https://dotnet.microsoft.com/en-us/download/dotnet/9.0); and
2222
2. The ability to `git clone` this repository.
2323

24+
## Course Units
25+
26+
The bootcamp is divided into progressive units, each building upon the previous:
27+
28+
* [Unit 0: Hello World](/unit-0) - Your first Akka.NET application
29+
* [Unit 1: AkkaWordCounterv2](/unit-1) - Akka.Hosting, Akka.TestKit, async/await, dependency injection, actor hierachies, routers, and handling complex message patterns
30+
2431
## Doing Bootcamp
2532

2633
> [!IMPORTANT]

unit-1/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Unit 1: Advanced Word Counter
2+
3+
This unit builds upon Unit 0 by introducing more advanced Akka.NET concepts and patterns through an enhanced version of our word counter application. You'll learn about testing actors, handling more complex message patterns, and structuring larger Akka.NET applications.
4+
5+
> [!IMPORTANT]
6+
>To get the content and written + video lessons for Akka.NET Bootcamp, you will need to [sign-up at the link below](https://petabridge.com/bootcamp/). __This repository only contains the source code__.
7+
8+
[![Get Akka.NET training material & updates at https://petabridge.com/bootcamp/signup](../images/grok.png)](https://petabridge.com/bootcamp/)
9+
10+
## Completed Source Code
11+
12+
The completed source code for Unit-1 can be found here: [/unit-1/completed/AkkaWordCounter2.App](/unit-1/completed/AkkaWordCounter2.App)
13+
14+
This unit includes both the main application and its corresponding test project, demonstrating how to properly test Akka.NET actor systems.

0 commit comments

Comments
 (0)