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
3 changes: 2 additions & 1 deletion apps/cockpit/src/lib/content-bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export function resolveRuntimeUrl(options: {
return null;
}

const baseUrl = process.env['NEXT_PUBLIC_COCKPIT_RUNTIME_BASE_URL'];
const baseUrl = process.env['NEXT_PUBLIC_COCKPIT_RUNTIME_BASE_URL']
|| 'https://examples.cacheplane.ai';

if (baseUrl && runtimeUrl) {
return `${baseUrl}/${runtimeUrl}`;
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/AGENTS.md.template
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Add to ~/.claude/settings.json:
{"mcpServers":{"angular-agent":{"command":"npx","args":["@cacheplane/angular-mcp"]}}}

## Version check
If this file is stale, fetch the latest: https://stream-resource.dev/llms-full.txt
If this file is stale, fetch the latest: https://cacheplane.ai/llms-full.txt
2 changes: 1 addition & 1 deletion apps/website/content/CLAUDE.md.template
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Add to ~/.claude/settings.json:
{"mcpServers":{"angular-agent":{"command":"npx","args":["@cacheplane/angular-mcp"]}}}

## Version check
If this file is stale, fetch the latest: https://stream-resource.dev/llms-full.txt
If this file is stale, fetch the latest: https://cacheplane.ai/llms-full.txt
4 changes: 2 additions & 2 deletions apps/website/src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function Footer() {
<NewsletterForm />
{/* Social links */}
<div className="flex items-center gap-4">
<a href="https://github.com/cacheplane/stream-resource"
<a href="https://github.com/cacheplane/angular"
target="_blank"
rel="noopener noreferrer"
className="transition-colors"
Expand Down Expand Up @@ -156,7 +156,7 @@ export function Footer() {
onMouseLeave={(e) => (e.currentTarget.style.color = tokens.colors.textSecondary)}>
Pricing
</Link>
<a href="https://github.com/cacheplane/stream-resource"
<a href="https://github.com/cacheplane/angular"
target="_blank" rel="noopener noreferrer"
className="transition-colors" style={{ color: tokens.colors.textSecondary }}
onMouseEnter={(e) => (e.currentTarget.style.color = tokens.colors.accent)}
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/components/shared/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function Nav() {
{l.label}
</Link>
))}
<a href="https://github.com/cacheplane/stream-resource"
<a href="https://github.com/cacheplane/angular"
target="_blank"
rel="noopener noreferrer"
className="transition-colors"
Expand Down Expand Up @@ -125,7 +125,7 @@ export function Nav() {
</Link>
))}
<div className="flex items-center gap-4 pt-2">
<a href="https://github.com/cacheplane/stream-resource"
<a href="https://github.com/cacheplane/angular"
target="_blank"
rel="noopener noreferrer"
style={{ color: tokens.colors.textSecondary }}
Expand Down
2 changes: 1 addition & 1 deletion examples/chat-agent/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ OPENAI_API_KEY=your-openai-api-key-here
OPENAI_MODEL=gpt-5-mini
LANGSMITH_API_KEY=your-langsmith-api-key-here
LANGSMITH_TRACING=false
LANGSMITH_PROJECT=stream-resource-example
LANGSMITH_PROJECT=cacheplane-example
Loading