-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
71 lines (54 loc) · 1.76 KB
/
Copy path.gitignore
File metadata and controls
71 lines (54 loc) · 1.76 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# ===================================================================
# SECRET & ENVIRONMENT-SPECIFIC FILES - MOST IMPORTANT!
# ===================================================================
# This file contains your secret keys, database passwords, API keys, etc.
# Never, ever commit this file.
env
# ===================================================================
# DJANGO & PROJECT-SPECIFIC
# ===================================================================
# The local SQLite database file. Each developer should have their own.
db.sqlite3
# Directory for user-uploaded files. Should not be in version control.
/media/
# Directory where `collectstatic` places all static files for deployment.
# This is generated from your source static files, so it doesn't need to be tracked.
/staticfiles/
# ===================================================================
# PYTHON ARTIFACTS
# ===================================================================
# Python bytecode and cache folders. These are auto-generated.
__pycache__/
*.pyc
*.pyo
*.pyd
# Virtual environment folders.
# These are specific to your machine and can be recreated from requirements.txt.
venv/
env/
.venv/
*/.venv/
# Python packaging and installation artifacts.
*.egg-info/
build/
dist/
*.egg
# ===================================================================
# IDE / EDITOR CONFIGURATION
# ===================================================================
# VS Code
.vscode/
# PyCharm
.idea/
# Sublime Text
*.sublime-project
*.sublime-workspace
# ===================================================================
# OPERATING SYSTEM FILES
# ===================================================================
# macOS
.DS_Store
# Windows
Thumbs.db
# sample files
sample-for-test-purpose