Fixing uri to backend
All checks were successful
Anatid Blog CI Workflow / test (./backend) (push) Successful in 31s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 31s
Anatid Blog CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/anatid-blog-backend, ./backend) (push) Successful in 50s
Anatid Blog CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/anatid-blog-frontend, ./frontend) (push) Successful in 45s
Anatid Blog CI Workflow / deploy (push) Successful in 22s

This commit is contained in:
Phill Pover 2025-03-27 12:51:42 +00:00
parent cdaa6a1416
commit 0fffee3343

View File

@ -7,7 +7,7 @@ function App() {
const [message, setMessage] = useState(''); const [message, setMessage] = useState('');
useEffect(() => { useEffect(() => {
axios.get('http://anatid-web-backend:3000/') axios.get('http://anatid-blog-backend:3000/')
.then(response => { .then(response => {
setMessage(response.data); setMessage(response.data);
}) })