Skip to content

Commit 479f47d

Browse files
Add comprehensive framework integration examples (#208)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 3957518 commit 479f47d

File tree

131 files changed

+8297
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+8297
-0
lines changed

examples/.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Environment files
2+
.env
3+
*.env
4+
!.env.example
5+
6+
# Python
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# Virtual environments
29+
venv/
30+
ENV/
31+
env/
32+
.venv
33+
34+
# IDE
35+
.vscode/
36+
.idea/
37+
*.swp
38+
*.swo
39+
*~
40+
.DS_Store
41+
42+
# Testing
43+
.pytest_cache/
44+
.coverage
45+
htmlcov/
46+
*.cover
47+
48+
# Logs
49+
*.log
50+
51+
# Database
52+
*.db
53+
*.sqlite
54+
*.sqlite3
55+

0 commit comments

Comments
 (0)