Skip to content

Commit cf50ffa

Browse files
authored
Merge pull request #55 from cld2labs/cld2labs/DocSummarization
cld2labs/DocSummarization
2 parents c5a1faa + c30803c commit cf50ffa

44 files changed

Lines changed: 2834 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Docker Compose Configuration
2+
# Local URL Endpoint (only needed for non-public domains)
3+
# If using a local domain like api.example.com mapped to localhost:
4+
# Set this to: api.example.com (domain without https://)
5+
# If using a public domain, set any placeholder value like: not-needed
6+
LOCAL_URL_ENDPOINT=not-needed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Environment variables and secrets
2+
.env
3+
.env.local
4+
.env.*.local
5+
*.env
6+
7+
# Python
8+
__pycache__/
9+
*.py[cod]
10+
*$py.class
11+
*.so
12+
.Python
13+
env/
14+
venv/
15+
ENV/
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# IDEs
33+
.vscode/
34+
.idea/
35+
*.swp
36+
*.swo
37+
*~
38+
.DS_Store
39+
40+
# Logs
41+
*.log
42+
logs/
43+
44+
# Testing
45+
.pytest_cache/
46+
.coverage
47+
htmlcov/
48+
49+
# Node modules
50+
node_modules/
51+
52+
# Docker
53+
*.pid
54+
55+
# Temporary files
56+
*.tmp
57+
*.bak
58+
nul

0 commit comments

Comments
 (0)