Skip to content

Commit d01f709

Browse files
committed
docs: finalize docs after org transfer to GetTechAPI
- site/index.astro: ghUrl Seungpyo1007/TechAPI -> GetTechAPI/TechAPI - README: dump producer is weekly-refresh (refresh-data is now a smoke test) - data/README: CPU path includes <segment>; validate cmd is app.validate (no scripts/ module exists)
1 parent 19798a4 commit d01f709

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ data/cpu/<manufacturer>/<year>/<segment>/<slug>.json # data/cpu/intel/2023/co
2323
All paths use singular folder names. Slugs are kebab-case and unique within each category.
2424

2525
The Astro site lives under `site/` and is the deploy target for GitHub Pages —
26-
it consumes the static JSON dump produced by TechEngine's `refresh-data` workflow.
26+
it consumes the static JSON dump produced by TechEngine's `weekly-refresh` workflow.
2727

2828
## Self-check
2929

data/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ brand/<slug>.json
88
soc/<manufacturer>/<slug>.json
99
smartphone/<brand>/<slug>.json
1010
gpu/<manufacturer>/<year>/<segment>/<slug>.json # GPUs are split by release year then segment (consumer | enterprise)
11-
cpu/<manufacturer>/<year>/<slug>.json # CPUs are additionally split by release year
11+
cpu/<manufacturer>/<year>/<segment>/<slug>.json # CPUs split by release year then segment (consumer | enterprise)
1212
```
1313

1414
GPU `<segment>` is:
@@ -21,4 +21,4 @@ GPU `<segment>` is:
2121
> each record carries `source_urls`. Don't assume a device is missing-by-error —
2222
> it may simply not be curated yet.
2323
24-
Validate after edits: `python -m scripts.validate`. Add only real, sourced models.
24+
Validate after edits: `python -m app.validate`. Add only real, sourced models.

site/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import "../styles/techapi.css";
33
44
const raw = import.meta.env.BASE_URL;
55
const base = raw.endsWith("/") ? raw : raw + "/";
6-
const ghUrl = "https://github.com/Seungpyo1007/TechAPI";
6+
const ghUrl = "https://github.com/GetTechAPI/TechAPI";
77
88
const endpoints = [
99
{ label: "/v1/smartphones", desc: "List all phones", href: `${base}v1/smartphones/index.json` },

0 commit comments

Comments
 (0)