forked from raiden-network/raiden-service-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
29 lines (21 loc) · 776 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
# ./data is used to store mounted volumes for the containers, which must not be
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# commited to the repo.
data
# The .env file contains private data, and should not be commited by mistake.
.env
# These files are generated by the containers, and exposed to git through the
# mapped volumes. Blacklisting to avoid mistakenly adding the generated files
# to the repo.
config/synapse/synapse.yaml
config/synapse/admin_user_cred.json
config/synapse/user_activity.json
config/synapse/workers/federation_sender*
config/synapse/workers/generic_worker*
config/synapse/workers/user_dir*
# Explicitly unignore build folder ("build" is a commonly globally ignored folder on some dev's systems)
!build
.mypy_cache
venv/