elsa-core/src/apps/Elsa.Server.Web
Sipke Schoorstra 90644f04f0 Disable Kafka in server configuration
This change updates the server configuration to disable Kafka by setting `useKafka` to false. Additionally, an unused import statement for `Elsa.EntityFrameworkCore` has been removed to clean up the code.
2024-11-22 20:48:17 +01:00
..
Enums Proto.Actor implementation for ChangeTokenSignalPublisher (#5817) 2024-07-24 22:23:33 +02:00
Extensions Add base path providers and standardize tenant accessor property 2024-10-17 19:47:55 +02:00
Filters Switch to project references from package references 2024-10-18 10:54:23 +02:00
Messages Add multitenancy support for background tasks (#6059) 2024-10-28 19:38:24 +01:00
Properties Enable Proto Actor Tracing for TraceLens (#5800) 2024-07-19 20:23:32 +02:00
WorkflowContextProviders Add Elsa.Kafka Module for Kafka Integration with Message Sending and Receiving Activities (#6108) 2024-11-18 13:42:54 +01:00
Workflows Fix error handling and logging in Kafka components 2024-11-22 20:47:44 +01:00
appsettings.json Update Kafka Module: Add Support for Configuring Consumer and Producer Factories (#6139) 2024-11-22 20:07:14 +01:00
Elsa.Server.Web.csproj Add Elsa.Kafka Module for Kafka Integration with Message Sending and Receiving Activities (#6108) 2024-11-18 13:42:54 +01:00
Elsa.Server.Web.csproj.DotSettings Enable Proto Actor Tracing for TraceLens (#5800) 2024-07-19 20:23:32 +02:00
FodyWeavers.xml Enable Proto Actor Tracing for TraceLens (#5800) 2024-07-19 20:23:32 +02:00
Program.cs Disable Kafka in server configuration 2024-11-22 20:48:17 +01:00
README.md Add dependencies to docker-compose and update README 2024-07-22 14:36:02 +02:00

Server

This project represents an Elsa application that hosts workflows and exposes API endpoints to manage & execute workflows.

Secrets

The following are the secrets stored in hashed form in appsettings.json:

API key: 48587230567A646D394B435A6277734A-4802fa49-e91e-45e8-b00f-b5492377e20b Admin user: admin Admin password: password

OpenTelemetry (MacOS)

COR_ENABLE_PROFILING=1 COR_PROFILER={918728DD-259F-4A6A-AC2B-B85E1B658318} CORECLR_PROFILER_PATH=$INSTALL_DIR/osx-x64/OpenTelemetry.AutoInstrumentation.Native.dylib DOTNET_ADDITIONAL_DEPS=$INSTALL_DIR/AdditionalDeps DOTNET_EnableDiagnostics=1 DOTNET_SHARED_STORE=$INSTALL_DIR/store DOTNET_STARTUP_HOOKS=OpenTelemetry.AutoInstrumentation.StartupHook OTEL_DOTNET_AUTO_HOME=$INSTALL_DIR OTEL_DOTNET_AUTO_LOGS_CONSOLE_EXPORTER_ENABLED=true OTEL_DOTNET_AUTO_METRICS_CONSOLE_EXPORTER_ENABLED=true OTEL_DOTNET_AUTO_TRACES_ADDITIONAL_SOURCES=Proto.Actor,Elsa.Workflows OTEL_DOTNET_AUTO_TRACES_CONSOLE_EXPORTER_ENABLED=true OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 OTEL_EXPORTER_OTLP_PROTOCOL=grpc OTEL_RESOURCE_ATTRIBUTES=service.name=Elsa Server,service.version=3.3.0,service.instance.id=instance-123,deployment.environment=development