diff --git a/backend/__pycache__/database.cpython-312.pyc b/backend/__pycache__/database.cpython-312.pyc deleted file mode 100644 index 71b60f8..0000000 Binary files a/backend/__pycache__/database.cpython-312.pyc and /dev/null differ diff --git a/backend/__pycache__/database.cpython-313.pyc b/backend/__pycache__/database.cpython-313.pyc deleted file mode 100644 index d438eda..0000000 Binary files a/backend/__pycache__/database.cpython-313.pyc and /dev/null differ diff --git a/backend/__pycache__/main.cpython-312.pyc b/backend/__pycache__/main.cpython-312.pyc deleted file mode 100644 index 67fafe7..0000000 Binary files a/backend/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index d96c2fd..027209c 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -2,7 +2,7 @@ import { useState, useEffect } from 'react' import Auth from './Auth' import './App.css' -const API_URL = import.meta.env.VITE_API_URL || 'http://10.188.50.221:8000' +const API_URL = import.meta.env.VITE_API_URL || 'http://localhost:8000' const AVAILABLE_ICONS = [ '📝', '💼', '🏠', '🛒', '🎯', '💪', '📚', '✈️', diff --git a/frontend/src/Auth.jsx b/frontend/src/Auth.jsx index 4e5ad8f..4c36f04 100644 --- a/frontend/src/Auth.jsx +++ b/frontend/src/Auth.jsx @@ -1,7 +1,7 @@ import { useState, useEffect } from 'react' import './Auth.css' -const API_URL = import.meta.env.VITE_API_URL || 'http://10.188.50.221:8000' +const API_URL = import.meta.env.VITE_API_URL || 'http://localhost:8000' function Auth({ onLogin }) { const [isLogin, setIsLogin] = useState(true)