-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
54 lines (52 loc) · 1.09 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
## IDE specific
# And yeah, you are using some kind of IDE around.
*.idea
.project
.pydevproject
.ropeproject/
.vscode/
## file
# Python compiled files.
*.pyc
# GetText compiled files.
*.mo
# Okay, SQLITE db, In dev env of course.
*.db
db.sqlite*
# And yeah this is env. HeHe!
.env
# you know this file is somehow suspicious, i don't know!
settings_local.py
# Backup files, mostly with unix editors.
*~
# Sometimes in dev env, I've got to use dump solution.
dump.json
## dir
# FileSystemCacheBasedBackend.
cache/
# Build will cum to your face where packaging is involved.
build/
# I remember i was young and keeps web-server logs in such a dir.
logs/
# And what da fuck is src/ doing here? I don't know.
src/
# you know media/ dir is where django keeps user-uploaded shit.
media/
# So daddy wanna know about code coverage.
.coverage
# Django dev trunk folder/repo dir
django-trunk/
# archive
archive/
.elasticbeanstalk/
# celery schedulers database file (shelve)
celerybeat-schedule
# Ignore Sphinx documentation
docs/
bower_components/
node_modules/
.static/
coverage_html/
media_test/
.translations/
staticfiles/