-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.gitignore
56 lines (45 loc) · 842 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
56
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Local install and build files
*.egg-info
build
dist
# PyCharm configuration
.idea
# VSCode configuration
.vscode
# Data folder for additional datasets
/geti_sdk/demos/data/*
!/geti_sdk/demos/data/example
# Jupyter and ipython checkpoints
.ipynb_checkpoints/
/notebooks/deployments
/notebooks/projects
/notebooks/benchmarks
/notebooks/output
/notebooks/hook_data
# Use case notebook data
/notebooks/use_cases/deployments
/notebooks/use_cases/data
!/notebooks/use_cases/data/102_from_zero_to_hero
# Documentation builds
/docs/build
# Test reports
.coverage
# Test server configurations
/tests/*.ini
!/tests/offline.ini
# Test artifacts and reports
/tests/artifacts
/tests/htmlcov/
/tests/report*