-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
93 lines (83 loc) · 1.04 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
90
91
92
93
# General
*.log
*.sql
*.sqlite
*.pyc
__pycache__/
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
*.tmp
tmp/
# Django specific
local_settings.py
db.sqlite3
/db.sqlite3-journal
media/
# Node.js specific
node_modules/
.npm
.pnp.js
.yarn/install-state.gz
.yarn-error.log*
.yarn-debug.log*
yarn.lock
package-lock.json
# Next.js specific
/.next/
/out/
/build
.next/cache/
# Development tools
.vscode/
.idea/
*.swp
*.swo
*.sublime
.DS_Store
*.tern-port
# Environment configuration files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.schema
.env.db
.env*.local
# SSL certificate files
*.pem
*.crt
*.key
*.csr
*.cer
# PgBouncer
/pgbouncer.pid
# Version control
.git/
.gitignore
# Misc
/coverage
/vercel
*.tsbuildinfo
next-env.d.ts
*.pem # duplicated SSL file pattern, remove if not needed twice
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.