-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
82 lines (62 loc) · 987 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
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
# ignore sqlite3 database
*.db
# Python binaries are boring
*.pyc
__pycache__
# ignore the dump file for database
config/dump*.sql
config/schema*.sql
latest.dump*
# virtualenv and pyenv
venv*
env
env311
.python-version
# code coverage
.coverage*
cover
htmlcov
# self-signed certificate
server.csr
server.crt
server.key*
*.pem
# environment setup
.env
# ctags
tags
# node.js folders
node_modules
# sublime stuff
*.sublime-*
# weird Mac stuff
.DS_Store
.cache
# node.js junk
npm-debug.log
# output of minifier
static/js/dist
static/css/dist
# installed javascript modules
static/lib
# typescript-compiled files
static/js/src
# python3
.mypy_cache
.pytest_cache
# editor
.vimrc
.nvimrc
.vscode
*.code-workspace
# data directory
data
# private future work document
TODO.md
IDEA.md
# breach detection should not be committed for now
utils/download_entries.py
utils/breach_detection.py
config/schema.sql
# ignore auto-generated .d.ts files for CSS
typescript/**/*.css.d.ts