Skip to content

Commit d71aa1f

Browse files
mstrathmanclaude
andcommitted
docs: point every surface at the public docs domain
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 0e65017 commit d71aa1f

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ reaches **0.89 MASE** where the teacher sits at ~0.80 and every classical
122122
method is above 1.0, and the distilled `gbt` student **matches or beats tuned
123123
XGBoost** on most TabArena tasks. The [Models](#models) section covers the
124124
student architectures and soft-label distillation; the
125-
[distillation guide](https://purestorage-openconnect.github.io/sqlite-predict/guides/distillation/)
125+
[distillation guide](https://code.purestorage.com/sqlite-predict/guides/distillation/)
126126
walks the whole flow.
127127

128128
## Why
@@ -171,7 +171,7 @@ parameters, and `GROUP BY` all compose naturally, from the CLI or from an ORM
171171
written, so they run on read-only databases and inside views. Each group
172172
returns one JSON document; expand it with `forecast_rows()` /
173173
`anomaly_rows()`, or `JSON.parse` it in your app. Each language's
174-
[getting-started guide](https://purestorage-openconnect.github.io/sqlite-predict/getting-started/python/)
174+
[getting-started guide](https://code.purestorage.com/sqlite-predict/getting-started/python/)
175175
shows the pattern through its native ORM (SQLAlchemy, Drizzle, Diesel).
176176

177177
`backtest`, `predict`, and the `distill_*` operations take read-only SELECT

bindings/node/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@
2929
"sqlite-predict-linux-x64": "0.0.1-alpha.6",
3030
"sqlite-predict-linux-arm64": "0.0.1-alpha.6",
3131
"sqlite-predict-windows-x64": "0.0.1-alpha.6"
32-
}
32+
},
33+
"homepage": "https://code.purestorage.com/sqlite-predict/"
3334
}

bindings/python/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
[project.urls]
2323
Homepage = "https://github.com/PureStorage-OpenConnect/sqlite-predict"
2424
Source = "https://github.com/PureStorage-OpenConnect/sqlite-predict"
25+
Documentation = "https://code.purestorage.com/sqlite-predict/"
2526

2627
[tool.setuptools]
2728
packages = ["sqlite_predict"]

bindings/rust/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Prediction as a SQL primitive for SQLite: forecast, detect_anomalies, and predict. The zero-dependency C core compiles into this crate."
77
repository = "https://github.com/PureStorage-OpenConnect/sqlite-predict"
8+
documentation = "https://code.purestorage.com/sqlite-predict/"
89
keywords = ["sqlite", "forecasting", "anomaly-detection", "time-series"]
910
categories = ["database", "science"]
1011
include = ["src/**", "build.rs", "csrc/**", "README.md"]

website/astro.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import starlight from "@astrojs/starlight";
44

55
// GitHub Pages serves this project at different URLs depending on visibility: a
66
// random *.pages.github.io ROOT while the repo is internal (private Pages), and
7-
// purestorage-openconnect.github.io/sqlite-predict once it is public. The deploy
7+
// code.purestorage.com/sqlite-predict once it is public. The deploy
88
// workflow reads the live Pages config (actions/configure-pages) and passes the
99
// correct origin + base in via env, so one build works for either URL. Locally
1010
// we default to root. Internal doc links are path-relative, so only asset and
1111
// nav paths depend on `base`.
1212
const base = process.env.PAGES_BASE_PATH || "/";
13-
const site = process.env.PAGES_ORIGIN || "https://purestorage-openconnect.github.io";
13+
const site = process.env.PAGES_ORIGIN || "https://code.purestorage.com";
1414

1515
export default defineConfig({
1616
site,

0 commit comments

Comments
 (0)