In the app.yaml file of my Google App Engine project there is a skip_files section used to exclude files of given types from being uploaded. How do I extend this regular expression to exclude the entire gaeunit directory from being uploaded?
skip_files: |
^(.*/)?(
(app\.yaml)|
(index\.yaml)|
(\..*)|
(.*\.pyc)|
(.*\.bat)|
(.*\.psd)|
(Thumbs.db)|
(.*\.svn/.*)|
(.*\.lnk)|
(.*\.datastore)|
(_darcs/.*)|
(nbproject/.*)|
(.*\.swp)|
(.*\.log)|
)$
Sometimes we may find that we want to exclude all files except some specific files from a specific domain: Edit Real Browser Check > Advanced > + Add Excluded File. From the dropdown menu, select 'All Except' and specify the domain or subdomain that you'd like to include.
If you exclude a file from a Web Site project (not Web Application), Visual Studio will simply add the . exclude extension to that file. If you remove the extension, that file will be included again. It's up to you if you still need those files or not.
The same way the nbproject
and darcs
directories are excluded in the above regular expression. Add this line anywhere before the last line:
(gaeunit/.*)|
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With