/site/_config.py
Python | 24 lines | 10 code | 3 blank | 11 comment | 0 complexity | 182966f7d32b630a4089c66cea30d4e9 MD5 | raw file
1# This is a barren blogofile config file. 2# See docs at http://www.blogofile.com/documentation 3# for config options 4# or run 'blogofile help init' to see more complete templates 5 6site.url = "http://www.pythonmentors.com" 7 8site.file_ignore_patterns = [ 9 # All files that start with an underscore 10 ".*/_.*", 11 # Emacs temporary files 12 ".*/#.*", 13 # Emacs/Vim temporary files 14 ".*~$", 15 # Vim swap files 16 ".*/\..*\.swp$", 17 # VCS directories 18 ".*/\.(git|hg|svn|bzr)$", 19 # Git and Mercurial ignored files definitions 20 ".*/.(git|hg)ignore$", 21 # CVS dir 22 ".*/CVS$", 23 ] 24