Forum OpenACS Development: Re: Why is "install application" seperate from "install service"?

Randy,
concerning the package watch, that was because of a file that I added by mistake and then discovered and removed.

During development it's quite convenient to have the packages you are working on watched all the time. The way to accomplish that is to put a statement like the following in an init file in your tcl directory:

foreach package_key $package_key_list {
    apm_watch_all_files $package_key
}

Thank you, Peter. That's a neat trick.