forked from alan-turing-institute/data-safe-haven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
55 lines (41 loc) · 781 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
# System files
*.DS_Store
__pycache__
# All secrets folders, no matter how nested
secrets/
temp/
# Any environment configs apart from those used as examples
environment_configs/*.json
# The package dependency cache
environment_configs/package_lists/dependency-cache.json
# Python build caches
__pycache__/
.venv/
dist/
# Development tools
.vscode
.python-version
.idea
.ionide
# Virtual enviroment files
.python-version
# PDF versions of our Markdown documents
docs/*.pdf
# ... except the tiers flowchart
!docs/tiersflowchart.pdf
# Sphinx output and venv
docs/build
docs/venv
# Files produced during testing
.mustache_config.json
expanded.yaml
.coverage
# Lychee cache
.lycheecache
# mypy cache
.mypy_cache
# ruff cache
.pytest_cache
# ruff cache
.ruff_cache
**/venv