# arikigame.com — Ariki game marketing site Player-facing marketing site for **Ariki**, the game we build with Tinqs Studio. | | | |---|---| | **URL** | https://arikigame.com | | **Source** | [`tinqs/ariki-website`](https://tinqs.com/tinqs/ariki-website) (transferred from `ozan/ariki-website` on 2026-06-13) | | **Deploy** | Gitea Actions — `.gitea/workflows/deploy.yml` on push to `main` | | **Hosting** | AWS S3 `arikigame-com-website` + CloudFront `EDMY8TXLTDXLQ` | | **Owner** | Ozan (Ariki Dev) | ## Layout ``` ariki-website/ ├── public/ ← static files served at arikigame.com (today) │ ├── index.html (landing page) │ ├── team-tool.html (team-tool client) │ ├── 404.html (not-found) │ ├── _next/ (Next.js framework) │ ├── img/ (game screenshots, art) │ └── team-tool/ (team-tool sub-app) ├── .gitea/workflows/ │ └── deploy.yml (S3 sync + CloudFront invalidation) └── README.md ``` ## Deploy Push to `main` triggers `.gitea/workflows/deploy.yml`: - `aws s3 sync public/ s3://arikigame-com-website/ --delete` - `aws cloudfront create-invalidation --distribution-id EDMY8TXLTDXLQ --paths "/*"` ## History - **2026-06-13** — moved out of `tinqs/studio/web/arikigame/` into its own repo (`tinqs/ariki-website` after ownership transfer). Game marketing no longer lives in the studio/platform monorepo. - **2026-06-12** — last deploy from old location: `chore: editor re-import metadata, sim checkpoints/telemetry, mountain QA script` (commit `02ccbbf0a`). - **2026-05-22** — old `tinqs/website` Next.js company-landing app was deleted. The `tinqs.com` platform marketing moved to `tinqs/studio/templates/home.tmpl` (Go-served). Game marketing stays at `arikigame.com` (this site). ## Future work - Replace `public/` with a live Next.js app (currently a static export). - Add a `web/` Next.js source tree; the workflow should `next build` then sync the `out/` to S3. - Brand refresh: Cannarin's generated images in `tinqs/design` + Özlem's rebranding (TBD). ## Verify a deploy ```bash # Pipeline run tinqs api /repos/tinqs/ariki-website/actions/runs?limit=1 # Live content curl -sI https://arikigame.com | head -3 PATH=/c/Program\ Files/Amazon/AWSCLIV2:$PATH aws s3 ls s3://arikigame-com-website/ | head ```