Compare commits

..

No commits in common. "47141307d2d24d1217df021096017d8ec816f4ff" and "2eb299049eb86410e04c5eea3f9e78164732960b" have entirely different histories.

2 changed files with 3 additions and 27 deletions

View File

@ -37,24 +37,4 @@ The only hosting environment tested for this service is Docker, but considering
* SQL Server * SQL Server
* Swagger * Swagger
* Docker * Docker
* Seq * Seq
## Integrations
### Javascript
Tuitio can be integrated with any system written in javascript through the npm package [tuitio-client](https://lab.code-rove.com/gitea/bricks/tuitio-client#readme).
**Source code:** https://lab.code-rove.com/gitea/bricks/tuitio-client
**Registry:** https://lab.code-rove.com/public-node-registry/-/web/detail/@flare/tuitio-client
### React
Tuitio can be integrated with an application written in React both through the above package and through: react-tuitio-client.
React tuitio client uses [tuitio-client](https://lab.code-rove.com/gitea/bricks/tuitio-client#readme) internally and adds state management through a react context and various react hooks through which the user has access to data and actions.
**Source code:**
**Registry:** In development
### C#
In development

View File

@ -1,10 +1,10 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim AS base FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 80
FROM mcr.microsoft.com/dotnet/sdk:6.0-bullseye-slim AS build FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /workspace WORKDIR /workspace
COPY ["dependencies.props", "."] COPY ["dependencies.props", "."]
COPY ["Directory.Build.props", "."] COPY ["Directory.Build.props", "."]
@ -26,14 +26,10 @@ FROM base AS final
WORKDIR /app WORKDIR /app
COPY --from=publish /app/publish . COPY --from=publish /app/publish .
ENV AUTHOR="Tudor Stanciu"
ENV Urls="http://*:80" ENV Urls="http://*:80"
ENV TZ=Europe/Bucharest ENV TZ=Europe/Bucharest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ARG APP_VERSION=0.0.0.0
ENV APP_VERSION=${APP_VERSION}
#Workaround to lower the TLS level in container for old sql server version #Workaround to lower the TLS level in container for old sql server version
RUN sed -i 's/TLSv1.2/TLSv1.0/g' /etc/ssl/openssl.cnf RUN sed -i 's/TLSv1.2/TLSv1.0/g' /etc/ssl/openssl.cnf