Is it possible to configure Tomcat such that it looks in a separate location for my 'webapp' directory while in development?
I have my git source in one directory and tomcat installed in another. I don't want to have to make changes in two places, or manually copy files over, or rebuild/deploy every time I make a simple change to CSS or Javascript.
EDIT - 2/21/2013
Unfortunately none of the suggestions worked and I suspect it may be because I didn't provide enough information about how I have things laid out.
I have Tomcat installed in a directory of my home directory (I'm on a Mac) called "Development".
/Users/dbrogdon/Development/apache-tomcat-7.0.35
I have my git source next to that.
/Users/dbrogdon/Development/myproject
In the myproject directory, my actual web files are located in:
/Users/dbrogdon/Development/myproject/application/appname/src/main/webapp
When I compile I put the appname.war into
/Users/dbrogdon/Development/apache-tomcat-7.0.35/webapps
Based on that updated information, what should I be providing as my docBase in either my conf/server.xml
or conf/Catalina/localhost/appname.xml
?