Hi I just finished deploying a project with Django, Docker and Heroku based on the https://djangoforprofessionals.com/ tutorial. However, I don't know how to switch back to local development after having deployed the app. If i go to 127.0.0.1:8000 in my browser i get a ERR_TIMED_OUT message.
Here is the official source code, which corresponds 1:1 to my code: https://github.com/wsvincent/djangoforprofessionals/tree/master/ch18-deployment
In the tutorial there are two docker-compose files, a docker-compose.yml for local development and a docker-compose-prod.yml for deployment.
My idea was to run docker-compose down
and docker-compose -f docker-compose.yml up -d --build
after deployment to continue working locally, but it did not work out.
Any help would be much appreciated!