I'm using the Go SDK for the Google App Engine (it uses some parts of the Python SDK and calls into dev_appserver.py
when running goapp serve
). By default, it seems to watch all files and folders for changes. I have a crapload of bower dependencies in the static folder, and the SDK complains that it can't watch that many files.
How to set the dev server to ignore changes in a folder?
Edit. Reading devappserver2/watcher_common.py
, it seems that it ignores directories starting with .
. I suppose in the worst case scenario, I could prefix folders with .
, but it's a hack. There should be a configuration option, and I can't seem to find it.