I am running a Flask-Python script from eclipse. When i run a script it's running with the development server url : http://127.0.0.1:5000/
. When i click Terminate
or Terminate All (Ctrl + Alt + F9)
from eclipse, it's terminate/stop the process. But, If i access the url : http://127.0.0.1:5000/
from browser, i can access this url. How do i stop this permanently.
Like, if we are using ASP .Net projects, we can access the url after stopped debugging from visual studio. Completely stop debugging for ASP .Net projects, need to stop the local ASP .Net Developement Server
. How do i achieve like this in eclipse.
Note : I checked this scenario with Django projects from eclipse. But i'm facing the same issue.
Thanks in advance !!!