Keyword cleanup
[oweals/karmaworld.git] / .gitignore
1 # Project secret files
2 karmaworld/secret/*.py
3 karmaworld/secret/*.json
4
5 # ignore vagrant virtual machines
6 .vagrant
7
8 # Python bytecode:
9 *.py[co]
10
11 # Packaging files:
12 *.egg*
13
14 # Editor temp files:
15 *.swp
16 *.swo
17 *~
18
19 # project cruft
20 .ropeproject*
21 .idea
22
23 # Sphinx docs:
24 build
25
26 # SQLite3 database files:
27 *.db
28
29 # Celerybeat scheduler file:
30 celerybeat-schedule
31
32 # log files:
33 log
34 *.log
35
36 # Translations:
37 *.pot
38
39 # virtual enviroment
40 venv
41 vkarma
42 beta
43
44 ## Django
45 # deployment specific django files:
46 local_settings.py
47 # uploaded media
48 karmaworld/media/
49 # collected staticfiles
50 karmaworld/static/
51 # secret things
52 karmaworld/secret/*
53
54 ## OS X
55 # thumbnail cache
56 .DS_Store
57
58 ## Sublime Text 
59 *.sublime-project
60 *.sublime-workspace
61
62 ## ctags
63 .tags
64
65 ## USDE accreditation school CSV
66 confs/accreditation.csv
67
68 # Local SSL testing
69 runserver_ssl
70 stunnel
71