Compare commits
No commits in common. "47141307d2d24d1217df021096017d8ec816f4ff" and "2eb299049eb86410e04c5eea3f9e78164732960b" have entirely different histories.
47141307d2
...
2eb299049e
20
README.md
20
README.md
|
@ -38,23 +38,3 @@ The only hosting environment tested for this service is Docker, but considering
|
|||
* Swagger
|
||||
* Docker
|
||||
* 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
|
|
@ -1,10 +1,10 @@
|
|||
#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
|
||||
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
|
||||
COPY ["dependencies.props", "."]
|
||||
COPY ["Directory.Build.props", "."]
|
||||
|
@ -26,14 +26,10 @@ FROM base AS final
|
|||
WORKDIR /app
|
||||
COPY --from=publish /app/publish .
|
||||
|
||||
ENV AUTHOR="Tudor Stanciu"
|
||||
ENV Urls="http://*:80"
|
||||
ENV TZ=Europe/Bucharest
|
||||
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
|
||||
RUN sed -i 's/TLSv1.2/TLSv1.0/g' /etc/ssl/openssl.cnf
|
||||
|
||||
|
|
Loading…
Reference in New Issue