diff --git a/client/src/App.vue b/client/src/App.vue index 8f77245..dbcd62a 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -1,75 +1,72 @@ diff --git a/client/src/ListenToSockets.vue b/client/src/Sockets.vue similarity index 100% rename from client/src/ListenToSockets.vue rename to client/src/Sockets.vue diff --git a/client/src/components/HelloWorld.vue b/client/src/components/HelloWorld.vue index 0de6538..6860020 100644 --- a/client/src/components/HelloWorld.vue +++ b/client/src/components/HelloWorld.vue @@ -1,58 +1,35 @@ diff --git a/server/app.py b/server/app.py index e3142eb..966e34d 100644 --- a/server/app.py +++ b/server/app.py @@ -3,8 +3,8 @@ from http.client import HTTPException import socketio from fastapi import FastAPI, APIRouter from fastapi.exceptions import RequestValidationError -from starlette.responses import PlainTextResponse from starlette.exceptions import HTTPException +from starlette.responses import PlainTextResponse from server.model.data import Game # Game state @@ -16,6 +16,14 @@ game = Game() # Server app = FastAPI() router = APIRouter() +# +# app.add_middleware( +# CORSMiddleware, +# allow_origins=["*"], +# allow_credentials=True, +# allow_methods=["*"], +# allow_headers=["*"], +# ) # Create and mount SocketIO app sio_asgi_app = socketio.ASGIApp( diff --git a/server/ws.py b/server/ws.py index 0709529..4c59aa4 100644 --- a/server/ws.py +++ b/server/ws.py @@ -3,9 +3,10 @@ import socketio sio = socketio.AsyncServer( async_mode='asgi', logger=True, - cors_allowed_origins="*" # FIXME: CSRF Vulnerability + cors_allowed_origins="*" # FIXME: CSRF Vulnerability ) + @sio.event def connect(sid, environ): print("connect ", sid, environ)