forked from evjrob/birbcam
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
51 lines (40 loc) · 854 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
##### Python Section #####
#Python Venv
venv/*
# Pycache
camera-app/__pycache__/*
camera-app/tests/__pycache__/*
webapp/ai-critter-app/__pycache__/*
notebooks/__pycache__/*
#################################
##### AI Model Data Section #####
# Images
imgs/*.jpg
imgs/training/*.jpg
camera-app/tests/test_temp/*
webapp/ai-critter-app/static/imgs
notebooks/data/training/*.jpg
# Models
models/*
# Data
data/*
data/species_map.json
# Except these files
!.gitignore
!db_schema.sql
!species_map.example.json
# Jupyter notebook checkpoints
notebooks/.ipynb_checkpoints/*
################################
##### Testing Section #####
# Tests
camera-app/tests/test_assets/*
###############################
##### Secrets Section #####
# Secrets
*/secrets.py
*/*/secrets.py
*/client_secrets.json
*/env_params.sh
settings.env
#############################