Repository | # of packages | Description |
---|---|---|
CLI | 1 | The Command Line Interface for everything Dolittle |
VSCode | 1 | Our Visual Studio Code extension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo certbot \ | |
certonly \ | |
--server https://acme-v02.api.letsencrypt.org/directory \ | |
--manual \ | |
--agree-tos \ | |
--preferred-challenges dns \ | |
--register-unsafely-without-email \ | |
-d *.domain. # Wildcard - could be regular and one can also specify multiple -d options to include in the certificate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Represents a wrapper for working with exceptions. | |
/// </summary> | |
public static class Catch | |
{ | |
/// <summary> | |
/// Catch any exception that occurs from the wrapped callback. | |
/// </summary> | |
/// <param name="callback">Callback to wrap.</param> | |
/// <returns>Exception that happened - if any. Null if not.</returns> |
Repository | # of packages | Description |
---|---|---|
Dolittle Styles | 1 | Our styles framework |
Common Client | 4 | Common client functionality |
Aurelia Client | 1 | Aurelia specific client support |
Aurelia Components | 1 | Reusable Aurelia web components |
Repository | # of packages | Description |
---|---|---|
AspNetCore | 6 | Core functionality when working in an ASP .NET Core app |
Autofac | 1 | Specific support for Autofac as the IoC container |
MongoDB ReadModels | 1 | Support for MongoDB readmodels |
MongoDB EventStore | 1 | Development purposed eventstore |
Azure EventStore | 1 | Leveraging Azure CosmosDB as the eventstore |
Repository | # of packages | Description |
---|---|---|
Fundamentals | 37 | Fundamental reusable building blocks |
Runtime | 18 | Our core microservice, CQRS, domain driven engine |
C# SDK | 19 | The C# SDK for working with the Runtime |
An implementation of a validation query would need to implement a similar interface:
public interface IValidationQuery<oout TDelegate>
{
T Query { get; }
}
Two projects: ValidationQueries.Contracts - which can be used by any projects - it has no dependencies to anything but potentially the Concepts project.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I mentioned at the end a program for software architecture: | |
https://leap.microsoft.no | |
Live Streaming - The Code Lab | |
http://thecodelab.tv/ | |
Influence the content: | |
http://feathub.com/einari/TheCodeLab |
NewerOlder