-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitignore
More file actions
32 lines (23 loc) · 813 Bytes
/
.gitignore
File metadata and controls
32 lines (23 loc) · 813 Bytes
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
# ./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/
docker-compose.override.y*
.vscode/