I created replit for django project. When I manually click start then server starts and i am able to access it from browser. But even when server is not running and i enter url in brower then also it starts the servers. How to stop this behaviour ? I dont want to start server when i enter url in brower ?
This is a default feature for the web hosting side of replit. Try setting the run command in .replit to echo ""
. You will have to start the server from shell, but it will no longer be woken.
3 Likes