Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions sample_solutions/Docugen-Microagents/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Docker Compose Configuration

# Local URL Endpoint (only needed for non-public domains)
# If using a local domain like api.example.com mapped to localhost, set to the domain without https://
# Otherwise, set to: not-needed
LOCAL_URL_ENDPOINT=not-needed

BACKEND_PORT=8000
FRONTEND_PORT=3000
86 changes: 86 additions & 0 deletions sample_solutions/Docugen-Microagents/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@

.env
.env.local
.env.*.local
*.env



# ============================================
# PYTHON
# ============================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.so

# Virtual environments
venv/
env/
ENV/
.venv/

# PyCharm
.idea/

# VS Code
.vscode/

# Pytest
.pytest_cache/
.coverage
htmlcov/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# ============================================
# NODE.JS / REACT
# ============================================
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Production build
build/
dist/

# React
.env.development.local
.env.test.local
.env.production.local

# ============================================
# TEMPORARY & CACHE FILES
# ============================================
# Temporary cloned repositories
api/tmp/
api/temp/
*/tmp/
*/temp/
tests/

# Logs
*.log
logs/

# OS files
.DS_Store
Thumbs.db
desktop.ini

# ============================================
# LANGGRAPH & AI
# ============================================
# LangGraph checkpoints (SQLite databases)
*.db
*.sqlite
*.sqlite3
checkpoints/

tmp/
608 changes: 608 additions & 0 deletions sample_solutions/Docugen-Microagents/README.md

Large diffs are not rendered by default.

Loading