diff --git a/.gitignore b/.gitignore index 870a482..011a8ec 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,6 @@ Thumbs.db # Env files .env .env.local + +# Runtime +.pids diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index ee1baac..bb25871 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -16,7 +16,7 @@ export default defineConfig({ allowedHosts: ['claude-agent', 'localhost'], proxy: { '/api': { - target: 'http://localhost:8000', + target: 'http://localhost:8001', changeOrigin: true } } diff --git a/start.sh b/start.sh index 3c7c90c..aaf8488 100755 --- a/start.sh +++ b/start.sh @@ -12,7 +12,7 @@ YELLOW='\033[1;33m' RED='\033[0;31m' NC='\033[0m' -BACKEND_PORT=8000 +BACKEND_PORT=8001 FRONTEND_PORT=5173 stop_services() {