-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy path.gitignore
89 lines (79 loc) · 2.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# ============================================================
# Basic .gitignore for Python projects with VS Code
# This file helps specify which files should not be
# tracked by git, and not added to the repository.
# ============================================================
# ============================================================
# Virtual Environments
# ============================================================
# Generally, exclude virtual environments from version control.
# They can be regenerated from a requirements.txt file and tend to be large.
# .venv is a common name for virtual environments.
.venv/
venv/
env/
# ============================================================
# Secrets
# ============================================================
# NEVER commit secrets. It's a security risk.
# .env is often used to hold environment variables and secrets.
.env
# ============================================================
# Python Artifacts
# ============================================================
# Compiled python files.
__pycache__/
*.pyc
*.pyo
# Packaging artifacts.
*.egg-info/
dist/
build/
# ============================================================
# Editor - Visual Studio Code
# ============================================================
# Visual Studio Code adds settings and cache directories
# that are generally kept out of the repository.
.vscode/*
.history/
# ============================================================
# macOS System Files
# ============================================================
# macOS adds various hidden files to directories.
# These are typically excluded from the repository.
.DS_Store
.AppleDouble
.LSOverride
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
# ============================================================
# Backup & Temporary Files
# ============================================================
# These may be added by text editors and some tools.
# These are typically excluded from the repository.
*~
*.bak
*.swp
*.swo
# ============================================================
# Logs & Databases
# ============================================================
# Logs and databases can get large and are typically excluded.
# For some projects, it may be useful to track these files.
# Comment out lines as needed to include them.
*.log
*.sql
*.sqlite
# ============================================================
# Node Modules
# ============================================================
# If your project ever uses something from Node.js (like
# some front-end libraries or tools), you might end up with
# a node_modules directory.
node_modules/
# ============================================================
# End of .gitignore
# ============================================================