From 7e4d233468ddf0b7db9ce66b3d786f96871d4bc6 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 10 Nov 2024 23:40:09 -0600 Subject: [PATCH] Minor unnecessary --- .vscode/settings.json | 5 ++++- backend/linkpulse/app.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index a880bab..d219a51 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -58,5 +58,8 @@ "*lock.*", "package.json", "routeTree.gen.ts" - ] + ], + "files.associations": { + "Caddyfile.*": "caddyfile" + } } diff --git a/backend/linkpulse/app.py b/backend/linkpulse/app.py index 8ebf18a..289d241 100644 --- a/backend/linkpulse/app.py +++ b/backend/linkpulse/app.py @@ -56,7 +56,7 @@ if is_development: from fastapi.middleware.cors import CORSMiddleware origins = [ - "http://localhost", + "http://localhost:8080", "http://localhost:5173", ]