/site/_config.py

https://bitbucket.org/jnoller/pythonmentors/ · 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. site.url = "http://www.pythonmentors.com"
  6. site.file_ignore_patterns = [
  7. # All files that start with an underscore
  8. ".*/_.*",
  9. # Emacs temporary files
  10. ".*/#.*",
  11. # Emacs/Vim temporary files
  12. ".*~$",
  13. # Vim swap files
  14. ".*/\..*\.swp$",
  15. # VCS directories
  16. ".*/\.(git|hg|svn|bzr)$",
  17. # Git and Mercurial ignored files definitions
  18. ".*/.(git|hg)ignore$",
  19. # CVS dir
  20. ".*/CVS$",
  21. ]