Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitignore 467 B
# Disable virtualenv
env/*

# Folder with db statics (dev mode)
smash/~/

# files uploaded and hosted by django
smash/uploads/
smash/smash/uploads/

# Disable python bytecode
*.pyc
#vim swap files
*.swp
#vim backup files
*~

# Disable local developer settings
local_settings.py

#tmp files
appointment-import/testFiles/~*
appointment-import/tmp.sql
*.iml
out
.idea
smash/smash.log
smash/smash/smash.log

#coverage info
.coverage
smash/htmlcov/
run-coverage.sh

media