-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
.gitignore
127 lines (116 loc) · 2.14 KB
/
.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
## Ignore everything
*
## Include
# Devcontainer
!/.devcontainer
!/.devcontainer/*
!/.vscode
!/.vscode/*
# GitHub Workflows
!/.github
!/.github/*
!/.github/workflows
!/.github/workflows/*
!/.github/templates
!/.github/templates/**
# Azure Pipelines
!/azure-pipelines
!/azure-pipelines/*
!/azure-pipelines/templates
!/azure-pipelines/templates/*
# Dockerstuff
!/docker/
!/docker/Dockerfile*
!/docker/aarch64
!/docker/aarch64/Dockerfile*
!/docker/amd64
!/docker/amd64/Dockerfile*
!/docker/amd64-cuda
!/docker/amd64-cuda/Dockerfile*
!/docker/jetson-nano
!/docker/jetson-nano/Dockerfile*
!/docker/jetson-nano/pycoral-2.0.0-cp38-cp38-linux_aarch64.whl
!/docker/jetson-nano/tflite_runtime-2.5.0.post1-cp38-cp38-linux_aarch64.whl
!/docker/rpi3
!/docker/rpi3/Dockerfile*
!/docker/ffprobe_wrapper
!/docker/ffmpeg_wrapper
!/docker/yolov4*.cfg
!/docker/opencv-python-headless-setup.py
!/docker/jetson-nano/opencv-tuple.patch
!/rootfs/
!/rootfs/etc/
!/rootfs/etc/**
!/rootfs/helpers/
!/rootfs/helpers/**
!/.dockerignore
# Tests
!/tests
!/tests/*
!/tests/components
!/tests/components/**
!/tests/domains
!/tests/domains/**
!/tests/helpers
!/tests/helpers/*
# Source
!/viseron
!/viseron/*
!/viseron/components
!/viseron/components/**
!/viseron/domains
!/viseron/domains/**
!/viseron/helpers
!/viseron/helpers/**
!/viseron/watchdog
!/viseron/watchdog/*
!/requirements_ci.txt
!/requirements_test.txt
!/requirements.txt
!/requirements-3.9.txt
!setup.py
!manager.py
# Frontend
!/frontend
!/frontend/public
!/frontend/public/*
!/frontend/public/static
!/frontend/public/static/*
!/frontend/src
!/frontend/src/**
!/frontend/tests
!/frontend/tests/**
!/frontend/.eslintrc.cjs
!/frontend/.prettierrc.json
!/frontend/404.html
!/frontend/index.html
!/frontend/lint-staged.config.js
!/frontend/package-lock.json
!/frontend/package.json
!/frontend/README.md
!/frontend/tsconfig.json
!/frontend/vite.config.ts
# Docs
!/docs
!/docs/*
!/docs/docs/**
!/docs/src/**
!/docs/static/**
# Scripts
!/scripts
!/scripts/*
!/scripts/gen_docs/*
# Repo
!/.coveragerc
!/.flake8
!/.gitignore
!/.isort.cfg
!/.mypy.ini
!/.pre-commit-config.yaml
!/.pylintrc
!/codecov.yaml
!/LICENSE
!/netlify.toml
!/README.md
!tox.ini
*__pycache*