Moving to api.
All checks were successful
Anatid Blog CI Workflow / test (./backend) (push) Successful in 28s
Anatid Blog CI Workflow / test (./frontend) (push) Successful in 29s
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 44s
Anatid Blog CI Workflow / deploy (push) Successful in 23s

This commit is contained in:
Phill Pover 2025-03-28 10:30:47 +00:00
parent 4e4b82e42d
commit a9ebfbba11

View File

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