Skip to content

Commit

Permalink
fix: update local port to use 5050 (#847)
Browse files Browse the repository at this point in the history
Co-authored-by: frtibble <32080479+frtibble@users.noreply.github.com>
  • Loading branch information
liammoat and frtibble authored May 8, 2024
1 parent fd6e2a2 commit e755928
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
"--app",
"./app.py",
"--debug",
"run"
"run",
"--port",
"5050"
],
"cwd": "${workspaceFolder}/code",
"preLaunchTask": "poetry install",
Expand Down
2 changes: 1 addition & 1 deletion code/frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default defineConfig({
server: {
proxy: {
"/api": {
target: "http://127.0.0.1:5000",
target: "http://127.0.0.1:5050",
changeOrigin: true,
secure: false
}
Expand Down

0 comments on commit e755928

Please sign in to comment.