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?

I start the server as follows

twistd -ny server.py

# Django and static file server:
root_resource = get_root_resource()
root_resource.putChild("static", static.File("static"))
http_factory = server.Site(root_resource, logPath="http.log")
internet.TCPServer(STATIC_PORT, http_factory,
interface=INTERFACE).setServiceParent(serviceCollection)
_______________________________________________
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to