Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,18 @@ go.work.sum
*.sqlite-wal

# Frontend — build artifacts
# `ui/dist/` is generated by `npm run build` and never committed. We DO
# commit `ui/dist/index.html` — a placeholder the Go `//go:embed ui/dist`
# directive needs at compile time. CI builds the UI before every Go step
# so the embedded assets are always fresh.
# `ui/dist/` IS committed in full so that `go install
# github.com/RandomCodeSpace/docsiq@vX.Y.Z` produces a working binary
# with the embedded SPA. The Go `//go:embed ui/dist` directive needs the
# real built assets present in the source tree at compile time; without
# them the binary serves a placeholder index.html and 404s on every
# /assets/* request. Re-build with `npm run build` and commit the
# resulting `ui/dist/` before tagging a release. CI also runs
# `npm run build` before `go build` so release binaries are always fresh.
# Other top-level dist/ build artefacts stay ignored.
dist/
!ui/dist/
ui/dist/*
!ui/dist/index.html
!ui/dist/**

# Frontend — tooling caches
ui/node_modules/
Expand Down
5 changes: 5 additions & 0 deletions ui/dist/assets/DocumentView-8W-IWHID.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions ui/dist/assets/DocumentsList-CXYq3r-Y.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ui/dist/assets/Graph-D7GvlYUe.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions ui/dist/assets/MCPConsole-CrhJqUq9.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ui/dist/assets/NoteEditor-D0VE7NTn.js

Large diffs are not rendered by default.

Loading
Loading