diff --git a/.env.development b/.env.development index 625030d..f0bfd02 100644 --- a/.env.development +++ b/.env.development @@ -1,2 +1,3 @@ REACT_APP_API_AUTH=http://127.0.0.1:8000 -REACT_APP_API_BLOG=http://127.0.0.1:8800 \ No newline at end of file +REACT_APP_API_BLOG=http://127.0.0.1:8800 +REACT_APP_API_TODO=http://127.0.0.1:8880 \ No newline at end of file diff --git a/.env.production b/.env.production index e7069ae..9dc9f27 100644 --- a/.env.production +++ b/.env.production @@ -1,2 +1,3 @@ REACT_APP_API_AUTH=https://www.demo.test -REACT_APP_API_BLOG=https://www.demo.test \ No newline at end of file +REACT_APP_API_BLOG=https://www.demo.test +REACT_APP_API_TODO=https://www.demo.test \ No newline at end of file diff --git a/src/App.js b/src/App.js index d4f5200..66e8a5f 100644 --- a/src/App.js +++ b/src/App.js @@ -12,6 +12,8 @@ import PostCategory from "./pages/PostCategory"; import Login from "./pages/Login"; import Register from './pages/Register'; import Profile from "./pages/Profile"; +import TaskPage from "./pages/TaskPage"; + import { AuthProvider } from "./context/AuthContext"; function App() { @@ -32,6 +34,7 @@ function App() { } /> } /> } /> + } />