-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy path.gitignore
82 lines (69 loc) · 1.35 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
# Environment files
.env
# Jupyter notebooks
try.ipynb
refactor_debug.ipynb
# Python cache and compiled files
**/__pycache__
*.pyc
*pycache*
**/*.egg-info
*egg-info*
.mypy_cache/
.ruff_cache
.tox/
# Virtual environments
.venv
venv*
# Distribution and build directories
**/dist
build
core/build/lib/*
temp
# Logs and caches
**/coder_agent_logs_*
**/.composio.coder.*
.indexing_status.json
.python/swe/logs
python/swe/tests/logs_dir
python/swe/dockerfiles/logs*
# Coverage and test results
.coverage
coverage.xml
junit.xml
.pytest_cache
.test_results
# Node modules and other dependencies
node_modules
Pipfile.lock
# System files
.DS_Store
~
# Specific project directories and files
**/composio_autogen.egg-info
**/composio_llamaindex.egg-info
.cache
.trunk
# Dockerfiles and related directories
python/dockerfiles/e2b-dev/composio
python/dockerfiles/composio
python/swe/dockerfiles/generated
python/swe/dockerfiles/indexed
python/swe/agentic
python/swe/dockerfiles/generated*
# Fern SDK and tools
fern/sdk/composio/
fern/tools/*
!fern/tools/introduction.mdx
fern/code
fern/api/openapi.json
fern/api/openapi-v3.json
# Cursor and GitHub styles
.cursor/*
.github/styles/*
.github/styles/config/*
.github/styles/config/vocabularies/*
# Styles
styles/*
styles/config/*
styles/config/vocabularies/*