forked from frdel/agent-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
63 lines (48 loc) · 1.34 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
**/.DS_Store
**/.env
**/__pycache__/
**/.conda/
# Ignore git (for bundler)
.git/
# Ignore all contents of the virtual environment directory
.venv/
# ignore all folders under /bundle
bundle/*/
# except some
!bundle/mac_pkg_scripts
# Ignore all contents of the directory "work_dir"
work_dir/*
# But do not ignore the directory itself
!work_dir/.gitkeep
# Ignore all contents of the directory "memory"
memory/*
# But do not ignore the directory itself
!memory/.gitkeep
# Ignore all contents of the directory "logs"
logs/*
# But do not ignore the directory itself
!logs/.gitkeep
# Ignore all contents of the directory "tmp"
tmp/*
# But do not ignore the directory itself
!tmp/.gitkeep
# Ignore everything in the "knowledge" directory
knowledge/*
# Do not ignore subdirectories (so we can track .gitkeep)
!knowledge/*/
# Ignore all files within subdirectories (except .gitkeep)
knowledge/**/*.*
!knowledge/**/.gitkeep
# Explicitly allow the default folder and its contents
!knowledge/default/
!knowledge/default/**
# Ignore everything in the "instruments" directory
instruments/*
# Do not ignore subdirectories (so we can track .gitkeep)
!instruments/*/
# Ignore all files within subdirectories (except .gitkeep)
instruments/**/*.*
!instruments/**/.gitkeep
# Explicitly allow the default folder and its contents
!instruments/default/
!instruments/default/**