-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (66 loc) · 2.36 KB
/
Copy path.gitignore
File metadata and controls
81 lines (66 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Node, every example + the SDK + the scaffolder have their own deps
node_modules/
npm-debug.log*
.npm/
# Plugin build intermediates (regenerated by `owncast-plugin build`)
.owncast-build/
# Engine build scratch (engines/build.mjs + build_py.py write here before
# copying the engine .wasm into the owncast embed dir)
engines/.build/
# Built plugin artifacts inside example projects (re-deployed into ./plugins/
# by tools/build-plugin.sh; rebuilt from src on demand)
# Built code artifacts at the example root (source lives under src/, so these
# root-level files are always build output): <slug>.wasm / <slug>.js (JS bundle)
# / <slug>.py (stripped Python source) and the packaged <slug>.ocpkg.
examples/js/*/*.wasm
examples/js/*/*.js
examples/js/*/*.ocpkg
examples/python/*/*.wasm
examples/python/*/*.py
examples/python/*/*.ocpkg
# The build CLI symlinks <plugin>/assets/ → <plugin>/<plugin>-assets/ so the
# host's loose-files layout finds them. The symlink is generated at build time.
examples/js/*/*-assets
examples/python/*/*-assets
# SDK toolchain cache (extism-js et al. fetched per-platform by postinstall)
sdks/js/bin/.cache/
# Demo binary's bolt KV from local runs (per-plugin namespaces)
plugin-data.db
# Deploy target, tools/build-plugin.sh populates this with .ocpkg packages,
# the manager writes its enabled-plugin state here, etc. All regenerable.
# tools/build-plugin.sh mkdir -p's it, so missing-dir-on-fresh-clone is fine.
plugins/
# Binaries in tools/: upstream tooling (extism-js, wasm-merge, wasm-opt, the
# binaryen static lib) is fetched on `npm install` by the SDK postinstall.
# Go binaries (owncast-plugin-test, owncast-plugin-serve) are built by
# tools/bootstrap.sh. Scripts stay tracked.
tools/*
!tools/*.sh
# Release build output, the host-binary release workflow
# (.github/workflows/release.yml) cross-compiles into here; CI-only, but the
# steps run the same way locally.
dist/
# Go test/build noise
*.test
*.prof
coverage.out
coverage.html
# OS / editor noise
.DS_Store
Thumbs.db
*.swp
*.swo
.idea/
# Local cross-repo dev workspace (CI uses the go.mod proxy pin)
host-runtime/go.work
host-runtime/go.work.sum
examples/python/**/*.ocpkg
# Python build artifacts
__pycache__/
*.pyc
*.egg-info/
sdks/python/build/
host-runtime/owncast-plugin-test
host-runtime/owncast-plugin-serve
# Engine-build toolchain (fetched by engines/install-toolchain.mjs)
engines/.toolchain/