Updated with server url

This commit is contained in:
Kasper Juul Hermansen 2021-11-14 19:37:04 +01:00
parent a0a4aade97
commit b9eb903f93
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
3 changed files with 9 additions and 1 deletions

View File

@ -9,6 +9,9 @@ RUN yarn install --frozen-lockfile
# Rebuild the source code only when needed
FROM node:14-alpine AS builder
WORKDIR /app
ARG NEXT_PUBLIC_SERVER_URL="http://localhost:5000"
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN yarn build

View File

@ -32,8 +32,11 @@ export const SocketProvider: FC = (props) => {
const [inboxTodos, setInboxTodos] = useState<Todo[]>([]);
useEffect(() => {
const serverUrl =
process.env.NEXT_PUBLIC_SERVER_URL || "http://localhost:5000";
const connection = new HubConnectionBuilder()
.withUrl("http://localhost:5000/hubs/todo")
.withUrl(`${serverUrl}/hubs/todo`)
.withAutomaticReconnect()
.configureLogging(LogLevel.Information)
.build();

View File

@ -31,5 +31,7 @@ services:
restart: always
build:
context: client
args:
NEXT_PUBLIC_SERVER_URL: "https://api-todo.front.kjuulh.io"
ports:
- 12008:3000