I deploy code. Then I modify the code on my file system. The code does not automatically change on the server. It does this on the django dev server. How can I make this happen?<br><br>I start the server as follows<br><br>
twistd -ny server.py<br><br><span dir="ltr" id=":re"># Django and static file server:<br>root_resource = get_root_resource()<br>root_resource.putChild(&quot;static&quot;, static.File(&quot;static&quot;))<br>http_factory = server.Site(root_resource, logPath=&quot;http.log&quot;)<br>
internet.TCPServer(STATIC_PORT, http_factory, interface=INTERFACE).setServiceParent(serviceCollection)</span><br>