diff --git a/.env.development b/.env.development index f0bfd02..50a8e7a 100644 --- a/.env.development +++ b/.env.development @@ -1,3 +1,4 @@ REACT_APP_API_AUTH=http://127.0.0.1:8000 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 +REACT_APP_API_TODO=http://127.0.0.1:8880 +REACT_APP_API_ANSIBLE=http://127.0.0.1:8888 \ No newline at end of file diff --git a/.env.production b/.env.production index dbc14b6..0ed72c9 100644 --- a/.env.production +++ b/.env.production @@ -1,3 +1,4 @@ REACT_APP_API_AUTH=https://www.icurfer.com REACT_APP_API_BLOG=https://www.icurfer.com -REACT_APP_API_TODO=https://www.icurfer.com \ No newline at end of file +REACT_APP_API_TODO=https://www.icurfer.com +REACT_APP_API_ANSIBLE=https://www.icurfer.com \ No newline at end of file diff --git a/src/App.js b/src/App.js index 66e8a5f..c498fe3 100644 --- a/src/App.js +++ b/src/App.js @@ -13,6 +13,7 @@ import Login from "./pages/Login"; import Register from './pages/Register'; import Profile from "./pages/Profile"; import TaskPage from "./pages/TaskPage"; +import AnsiblePage from "./pages/Ansible"; import { AuthProvider } from "./context/AuthContext"; @@ -35,6 +36,7 @@ function App() { } /> } /> } /> + } />