Template for C# socket server with dependency injection in .NET 5.
- Sockets
- Dependency injection
- Docker & docker compose
- editorconfig
dotnet new -i Sokka.Templatedotnet new sokka -o Your.Project# Run the server
cd Your.Project/src/Your.Project.Server
dotnet run
# Run the client
cd Your.Project/src/Your.Project.Client
dotnet run# Build the containers
docker-compose build
# Run the server container
docker-compose up server
# Run the client container
docker-compose run --rm client