forked from freedomofpress/securedrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
183 lines (144 loc) · 2.82 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# ignore the test-results directory which is used to share logs and
# test files with the development containers
test-results
# ignore the production config files that don't end in .example
securedrop-app-conf.yml
securedrop-mon-conf.yml
# ignore site-specific vars file, since we can't predict contents
install_files/ansible-base/group_vars/all/site-specific
# ignore securedrop-app-code wheelhouse archive
wheelhouse
# ignore the instance information JSON file to prevent commit of private info
securedrop/tests/functional/instance_information.json
# ignore v3 onion JSON file
install_files/ansible-base/tor_v3_keys.json
# ignore the ATHS/THS hostname file ansible places
# Tor v2
app-ssh-aths
app-document-aths # leave this here for historic reasons
app-journalist-aths
app-source-ths
mon-ssh-aths
# Tor v3
app-journalist.auth_private
app-sourcev3-ths
app-ssh.auth_private
mon-ssh.auth_private
*.key
*.csr
*.pem
*.crt
*.ca
# ignore ansible retry files
*.retry
# ignore "external" Ansible configuration file
secureDropConf.yml
*.asc
*.crt
# zipped and deb files
*.tgz
*.deb
*.tar.gz
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/**
develop-eggs/
dist/
downloads/
eggs/
.eggs/
/lib/
lib64/
parts/
sdist/
wheels/
*.egg-info/
.installed.cfg
*.egg
*.log
*.whl
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
.mypy_cache/
# Translation artifacts generated during testing and packaging:
install_files/ansible-base/roles/tails-config/templates/locale/*.po
securedrop/tests/i18n/messages.pot
securedrop/translations/**/*.mo
# Flask stuff:
instance/
.webassets-cache
# Sphinx documentation
docs/_build/
# pyenv
.python-version
# dotenv
.env
# virtualenv
.venv/
.venv3/
venv/
ENV/
# Vim temp files
*~
*.swp
*.swo
# Functional test logs
**/ghostdriver.log
.vagrant
.chroot
#IDE
.idea
# Ignore Mac OS X
.DS_Store
# Emacs
\#*#
# compiled assets
securedrop/static/gen
securedrop/static/.webassets-cache
# Ignore .bundle directory added by Vagrant 1.8.0
# Vagrant adding this directory is a bug, and should be fixed in Vagrant 1.8.1:
# https://github.com/mitchellh/vagrant/issues/6705
.bundle
# Vagrant-added ansible-galaxy roles
.galaxy_roles
# ignore ansible retry files
*.retry
# Skip over CI junit files
junit/
raw-test-output/
*results.xml
# molecule
.molecule
#Used in CI for parsing out Tor nightly version
.tor_version
# Ignore visual studio code folder
.vscode
#Ignore vagrant staging files
*.box
*.img
#These files are used in CI/dev env for determining whether to rebuild docker
#images
*.checksum
#Functional test logs
securedrop/tests/functional/firefox.log
securedrop/geckodriver.log
# Rust build artifacts
target/