Skip to content

Instantly share code, notes, and snippets.

View kirillkrylov's full-sized avatar
🏠
Working from home

Kyryl Krylov, CPA kirillkrylov

🏠
Working from home
View GitHub Profile
@kirillkrylov
kirillkrylov / gist:b55451a1dcabd216f8f984eda53c0cd9
Last active September 28, 2023 15:01
Creation in Kubernetes with remote debugger through SSH

Image worker-dev

ARG NetCoreVersion=6.0
ARG AspEnvironment=Development

FROM mcr.microsoft.com/dotnet/sdk:${NetCoreVersion}
ENV ASPNETCORE_ENVIRONMENT=${AspEnvironment} TZ=Europe/Kiev

RUN apt-get update && apt-get -y install openssh-server unzip curl
@kirillkrylov
kirillkrylov / gist:500a0514359a36a650b9d14dbc89464a
Last active January 30, 2023 14:57
Creatio DataService Example

How to use DataService in Creatio

To start off fork/download collection

[Run in Postman][postman-collection]

This collection provides Auth Example request collection and Auth Example environment.

@kirillkrylov
kirillkrylov / gist:6fd59436cdfefe7f75cfe90ae1a71f8b
Created December 28, 2022 02:59
How to configure webService
Follow the instructions
@kirillkrylov
kirillkrylov / gist:d76b63825122915005ccf683a369b97b
Last active September 16, 2022 11:44
Configuration Example

To configure anonymous services follow academy [article][anonymous-service]

  1. Register the custom web service Go to the ..\Terrasoft.WebApp\ServiceModel directory. Create a DlbSmsService.svc file and add the following record to it.
<% @ServiceHost Language="C#" Debug="true" Service="DlbSmsConnector.DlbSmsService" %>
  1. Enable both HTTP and HTTPS support Open the ..\Terrasoft.WebApp\ServiceModel\http\services.config file and add the following record to it.