Skip to content
Snippets Groups Projects
.gitignore 227 B
Newer Older
  • Learn to ignore specific revisions
  • Nils G.'s avatar
    Nils G. committed
    #Compiled python code
    *.pyc
    
    #Backup files
    *.bak
    *.py.1
    *.py.2
    *.py.3
    *.html.1
    *.html.2
    *.html.3
    *.css.map
    
    #Log files
    *.log
    
    #Runtime folders
    /databases
    /sessions
    /errors
    /cache
    /uploads
    /cron
    /__pycache__
    
    /routes.example.py