-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
22 lines (17 loc) · 1.25 KB
/
.gitignore
File metadata and controls
22 lines (17 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ─── Python virtualenv ─────────────────────────────────────────────────────────
venv/
# ─── Local secrets ──────────────────────────────────────────────────────────────
.env
# ─── Bot runtime state & caches ─────────────────────────────────────────────────
state.json
*atomic* # any atomic‐write temp files
# ─── Python bytecode & IDE cruft ────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.swp # Vim swapfiles, etc
# ─── Ignore .txt and .jpg assets by default, but keep requirements.txt ─────────
*.txt
*.jpg
!requirements.txt
# ─── (optionally) lockfiles if you don't want to commit them ───────────────────
# Pipfile.lock # uncomment if you want to ignore Pipfile.lock too