-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
65 lines (56 loc) · 869 Bytes
/
.gitignore
File metadata and controls
65 lines (56 loc) · 869 Bytes
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
# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
*.egg
.venv/
venv/
# Environment and secrets
config/.env
.env
# Logs
logs/
*.log
# Board runtime data
board/archive/
board/.snapshot/
board/.gitlab_issue_map.json
# Workspace project code (generated by agents)
workspace/src/*
workspace/tests/*
workspace/docs/*
workspace/config/*
!workspace/src/.gitkeep
!workspace/tests/.gitkeep
!workspace/docs/.gitkeep
!workspace/config/.gitkeep
# Generated project files in workspace root
workspace/Dockerfile*
workspace/docker-compose*.yml
workspace/Makefile
workspace/README.md
workspace/CONTRIBUTING.md
workspace/requirements.txt
workspace/pytest.ini
workspace/.coverage
workspace/.env*
workspace/.github/
workspace/frontend/
workspace/monitoring/
# Local repo clone
repo/
# Archives
*.tar.gz
*.zip
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db