Skip to content

Commit 65fcc4c

Browse files
committed
Initial checkin
0 parents  commit 65fcc4c

15 files changed

+3312
-0
lines changed

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
*.egg-info/
8+
dist/
9+
build/
10+
.venv/
11+
venv/
12+
env/
13+
14+
# Environment variables
15+
.env
16+
.env.local
17+
18+
# Tokens and credentials
19+
.mcp_tokens.json
20+
docusign_private_key.pem
21+
*.pem
22+
23+
# IDE
24+
.vscode/
25+
.idea/
26+
*.swp
27+
*.swo
28+
*~
29+
30+
# OS
31+
.DS_Store
32+
Thumbs.db
33+
34+
# Database
35+
*.db
36+
*.sqlite
37+
*.sqlite3
38+
39+
# Logs
40+
*.log
41+
42+
# Testing
43+
.pytest_cache/
44+
.coverage
45+
htmlcov/
46+
47+
# Flask
48+
instance/
49+
.webassets-cache
50+
51+
# Jupyter Notebook
52+
.ipynb_checkpoints
53+
54+
# Distribution / packaging
55+
*.egg
56+
*.egg-info/
57+
dist/
58+
build/
59+
eggs/
60+
.eggs/
61+
lib/
62+
lib64/
63+
parts/
64+
sdist/
65+
var/
66+
wheels/

0 commit comments

Comments
 (0)