Skip to content

Commit fd7da43

Browse files
committed
feat: publish contentpipe plugin repository
0 parents  commit fd7da43

63 files changed

Lines changed: 11681 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.

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
.pytest_cache/
6+
.mypy_cache/
7+
.ruff_cache/
8+
.venv/
9+
venv/
10+
11+
# Runtime / local state
12+
output/runs/
13+
/tmp/
14+
*.log
15+
nohup.out
16+
17+
# IDE / OS
18+
.vscode/
19+
.idea/
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Secrets / local config
24+
.env
25+
.env.*
26+
settings.local.yaml
27+
28+
# Build artifacts
29+
*.egg-info/
30+
dist/
31+
build/

0 commit comments

Comments
 (0)