summary refs log tree commit diff
path: root/.gitignore
blob: 8cf504324b9e3c07dbc6c5805a358d65a14b3ced (plain) (blame)
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
# filename patterns
*~
.*.swp
.#*
*.deb
*.egg
*.egg-info
*.lock
*.py[cod]
*.snap
*.tac
_trial_temp/
_trial_temp*/
/out
.DS_Store
__pycache__/

# We do want poetry, cargo and flake lockfiles.
!poetry.lock
!Cargo.lock
!flake.lock

# stuff that is likely to exist when you run a server locally
/*.db
/*.log
/*.log.*
/*.log.config
/*.pid
/.python-version
/*.signing.key
/env/
/.venv*/
/homeserver*.yaml
/logs
/media_store/
/uploads

# For direnv users
/.envrc
.direnv/

# For nix/devenv users
.devenv/

# IDEs
/.idea/
/.ropeproject/
/.vscode/

# build products
!/.coveragerc
/.coverage*
/.mypy_cache/
/.tox
/.tox-pg-container
/build/
/coverage.*
/dist/
/docs/build/
/dev-docs/_build/
/htmlcov
/pip-wheel-metadata/

# docs
book/

# complement
/complement-*
/main.tar.gz

# rust
/target/
/synapse/*.so

# Poetry will create a setup.py, which we don't want to include.
/setup.py

# Don't include users' poetry configs
/poetry.toml