Files
ariki-website/README.md
T
ozan 39a7541b63 docs(README): note repo is now tinqs/ariki-website (transferred from ozan/)
This commit also serves to re-trigger the deploy workflow after the
ownership transfer (the runner didn't pick up the original push because
the repo was at ozan/ariki-website; now at tinqs/ariki-website, the
runner can see it).

Co-Authored-By: DeepSeek V4 Pro <noreply@deepseek.com>
2026-06-13 03:07:24 +01:00

66 lines
2.3 KiB
Markdown

# 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
```