Rink is the easiest way to put something on the web at SeenThis. You make a little website β even just one page β and it goes live in seconds at its own address, visible only to people at SeenThis. No setup, no waiting on anyone.
Great for a prototype, a campaign mockup, an internal tool, a live poll, a one-off page for a meeting β anything you want to show people instead of just describe.
Have a folder with an index.html? Drop it on the
front page. Live in ~2 seconds. That's it.
Don't want to make the files yourself? Tell Claude or ChatGPT what you want β it builds the page and puts it live on Rink. Copy the starter prompt:
Developers: salming rink deploy from any folder. Rollback,
preview, share β all from the CLI.
By default, everyone at SeenThis (and only SeenThis β it's behind the company login). On any site you own you can also:
Plain web pages are often enough. But when you need a bit more, it's already there β no accounts, no API keys, no setup:
If you're using an AI to build your site, just ask for these by name β it knows how to wire them up.
The above capabilities are one script tag away. Skip this section if you're not writing code.
<script src="/rink.js"></script> // global `rink` appears
rink.db.collection('posts').create({ title: 'Lunch vote' }); rink.db.collection('posts').subscribe({ onCreate: render }); // realtime await rink.ai.chat('Summarise these notes'); // LLM, key on server const me = await rink.identity.me(); // { email, user } await rink.email.send({ to: 'a@seenthis.se', subject, text }); rink.schedule.add({ schedule: '0 9 * * 1-5', action }); // recurring rink.live.channel('cursors').on(draw).send({ x, y }); // raw realtime
Calls are scoped to the site + signed-in user automatically.
Limits keep the shared platform healthy (50k docs & 256 KB/doc, AI &
email rate limits, 10 scheduled jobs/site). Public .se sites are
static-only β the rink.* APIs are internal-only.
Rink is for quick internal things. When something needs its own database, custom domain, real CI/CD and monitoring, build it on Salming, SeenThis's full application platform. Outgrew Rink? The infra team will help you graduate a site into a proper Salming app.
Explore Salming βRink stands on two shoulders:
Built by the infra team. Questions, quota bumps, ideas β email infra@seenthis.co or ping #product-team-infrastructure on Slack.