-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
52 lines (43 loc) · 824 Bytes
/
.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
# Ignore all image media in /media/store/image
media/
# virtual env
Pipfile
Pipfile.lock
env/
# migartions
core/migrations/*
!core/migrations/__init__.py
store/migrations/*
!store/migrations/__init__.py
auth/migrations/*
!auth/migrations/__init__.py
store_custom/migrations/*
!store_custom/migrations/__init__.py
like/migrations/*
!like/migrations/__init__.py
tag/migrations/*
!tag/migrations/__init__.py
home/migrations/*
!home/migrations/__init__.py
# __pycach__
core/__pycache__/
core/settings/__pycache__/
store/__pycache__/
auth/__pycache__/
store_custom/__pycache__/
like/__pycache__/
tag/__pycache__/
home/__pycache__/
.pytest_cache/
# vscode settings
.vscode/
# Celery
celerybeat-schedule
# fuse hidden
.fuse_hidden*
# test pycache
store/tests/__pycache__/
# static files
staticfiles/
# Log file
general.log