Skip to content
Merged
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
12 changes: 6 additions & 6 deletions apps/web/public/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -1339,15 +1339,15 @@ <h2>Run CorpusKit with your collection</h2>
<div class="code-card" aria-label="Example setup commands">
<div class="code-top"><span>Terminal</span><span>Local setup</span></div>
<!-- commands follow the setup instructions in the repository README -->
<pre aria-label="git clone https://github.com/noicework/kb.git; cd kb; copy the environment example; provision the application; start the development server"><code aria-hidden="true"><span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">git clone https://github.com/noicework/kb.git</span><span class="terminal-cursor"></span></span>
<span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">cd kb</span><span class="terminal-cursor"></span></span>
<pre aria-label="git clone https://github.com/noicework/corpuskit.git; cd corpuskit; copy the environment example; provision the application; start the development server"><code aria-hidden="true"><span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">git clone https://github.com/noicework/corpuskit.git</span><span class="terminal-cursor"></span></span>
<span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">cd corpuskit</span><span class="terminal-cursor"></span></span>
<span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">cp .env.example .env</span><span class="typed-comment code-dim"> # knowledge service credentials</span><span class="terminal-cursor"></span></span>
<span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">deno task provision</span><span class="terminal-cursor"></span></span>
<span class="terminal-line"><span class="code-dim">$</span> <span class="typed-command">deno task dev</span><span class="terminal-cursor"></span></span></code></pre>
</div>
<div class="run-links">
<a href="https://github.com/noicework/kb">View the repository</a>
<a href="https://github.com/noicework/kb/blob/main/LICENSE">Read the Apache 2.0 licence</a>
<a href="https://github.com/noicework/corpuskit">View the repository</a>
<a href="https://github.com/noicework/corpuskit/blob/main/LICENSE">Read the Apache 2.0 licence</a>
</div>
</div>
</div>
Expand All @@ -1373,8 +1373,8 @@ <h3>Before you deploy</h3>
<h2>Be a part of <span class="closing-claim"><span class="closing-highlight" id="closingHighlight">CorpusKit</span><span class="closing-cite" id="closingCite">3</span></span></h2>
<div class="next-steps">
<article class="next-step"><h3>Use a portal</h3><p>Search, browse and ask questions in a CorpusKit portal maintained by your organisation.</p><a href="https://opax.corpuskit.org">See the portal example</a></article>
<article class="next-step"><h3>Run CorpusKit</h3><p>Connect your organisation’s research collection and maintain the deployment on infrastructure you manage.</p><a href="https://github.com/noicework/kb">View the repository</a></article>
<article class="next-step"><h3>Contribute</h3><p>Contribute to the code, design, documentation, research practice or tests.</p><a href="https://github.com/noicework/kb/blob/main/CONTRIBUTING.md">Read the contribution guide</a></article>
<article class="next-step"><h3>Run CorpusKit</h3><p>Connect your organisation’s research collection and maintain the deployment on infrastructure you manage.</p><a href="https://github.com/noicework/corpuskit">View the repository</a></article>
<article class="next-step"><h3>Contribute</h3><p>Contribute to the code, design, documentation, research practice or tests.</p><a href="https://github.com/noicework/corpuskit/blob/main/CONTRIBUTING.md">Read the contribution guide</a></article>
</div>
<svg class="closing-thread" id="closingThread" aria-hidden="true">
<path id="closingThreadPath" d=""/>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/homepage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Deno.test('marketing homepage keeps its approved structure and destinations', ()
expect(homepage).toContain('Put your organisation’s')
expect(homepage).toContain('Be a part of')
expect(homepage).toContain('href="https://opax.corpuskit.org"')
expect(homepage).toContain('href="https://github.com/noicework/kb"')
expect(homepage).toContain('href="https://github.com/noicework/corpuskit"')
expect(homepage).toContain('href="https://noice.net.au"')
expect(homepage).toContain('href="https://www.progress.com/agentic-rag"')
})
2 changes: 1 addition & 1 deletion docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ business routes depend on store interfaces rather than either persistence mechan
## Deployment pipeline
`local -> pull request -> Cloudflare`, in that order, always.

- Repo: `github.com/noicework/kb`, production branch `main`.
- Repo: `github.com/noicework/corpuskit`, production branch `main`.
- `.github/workflows/deploy.yml` runs the full gate, builds and dry-runs the Worker package, then
deploys that preserved package as the `corpuskit` Worker only when the gate passes.
- Cloudflare auth in CI is a scoped API token stored as `CLOUDFLARE_API_TOKEN`; ARAG and Entra
Expand Down
Loading