Hello! So I have gone too long without having the debugger enabled when I am developing on my Ubuntu web server running Python with Flask. I got the debugger to run at ’ 127.0.0.1:5000 ’ after running the command ’ flask run ', but I am unsure how to access the debugger this way? Any help would be much appreciated, thanks!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
127.0.0.1
is the local loopback interface. It will only be accessible from the server itself. If you need to access it remotely, start the app using:This tells it to bind to all interfaces, including the public network. This will make it available at your public IP address on port 5000.
Do keep in mind this important note from the Flask documentation about why it defaults to running locally: