Skip to content

Commit ca3dfd7

Browse files
authored
Merge pull request #75 from cld2labs/cld2labs/Docugen-Microagents
cld2labs/Docugen-Microagents
2 parents 2ddc29f + d71d513 commit ca3dfd7

71 files changed

Lines changed: 22190 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Docker Compose Configuration
2+
3+
# Local URL Endpoint (only needed for non-public domains)
4+
# If using a local domain like api.example.com mapped to localhost, set to the domain without https://
5+
# Otherwise, set to: not-needed
6+
LOCAL_URL_ENDPOINT=not-needed
7+
8+
BACKEND_PORT=8000
9+
FRONTEND_PORT=3000
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
2+
.env
3+
.env.local
4+
.env.*.local
5+
*.env
6+
7+
8+
9+
# ============================================
10+
# PYTHON
11+
# ============================================
12+
# Byte-compiled / optimized / DLL files
13+
__pycache__/
14+
*.py[cod]
15+
*$py.class
16+
*.so
17+
18+
# Virtual environments
19+
venv/
20+
env/
21+
ENV/
22+
.venv/
23+
24+
# PyCharm
25+
.idea/
26+
27+
# VS Code
28+
.vscode/
29+
30+
# Pytest
31+
.pytest_cache/
32+
.coverage
33+
htmlcov/
34+
35+
# mypy
36+
.mypy_cache/
37+
.dmypy.json
38+
dmypy.json
39+
40+
# ============================================
41+
# NODE.JS / REACT
42+
# ============================================
43+
# Dependencies
44+
node_modules/
45+
npm-debug.log*
46+
yarn-debug.log*
47+
yarn-error.log*
48+
49+
# Production build
50+
build/
51+
dist/
52+
53+
# React
54+
.env.development.local
55+
.env.test.local
56+
.env.production.local
57+
58+
# ============================================
59+
# TEMPORARY & CACHE FILES
60+
# ============================================
61+
# Temporary cloned repositories
62+
api/tmp/
63+
api/temp/
64+
*/tmp/
65+
*/temp/
66+
tests/
67+
68+
# Logs
69+
*.log
70+
logs/
71+
72+
# OS files
73+
.DS_Store
74+
Thumbs.db
75+
desktop.ini
76+
77+
# ============================================
78+
# LANGGRAPH & AI
79+
# ============================================
80+
# LangGraph checkpoints (SQLite databases)
81+
*.db
82+
*.sqlite
83+
*.sqlite3
84+
checkpoints/
85+
86+
tmp/

sample_solutions/Docugen-Microagents/README.md

Lines changed: 608 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)