Ship a SweatStack app in less time than it takes to write one.
Static hosting for SweatStack apps. Write an HTML file, deploy it from your terminal, and it's live in seconds.
The whole app can be one file:
<!-- index.html --> <script type="module"> // OAuth PKCE — the Skills write this part for you const token = await connect() const res = await fetch( "https://app.sweatstack.no/api/v1/activities/latest", { headers: { Authorization: "Bearer " + token } } ) const ride = await res.json() document.body.innerHTML = "<h1>" + ride.name + "</h1>" + "<p>" + Math.round(ride.summary.power.mean) + " W average</p>" </script>
Two commands and it's online:
$ sweatstack app create "My App" $ sweatstack page deploy ✓ live at myapp.pages.sweatstack.dev
Don't want to write it yourself? Point an AI agent at the SweatStack Skills and it builds the app, wires up your data, and runs that deploy for you.
P.S. “Static” describes the hosting, not what your app can do. Power-duration modelling, real statistics, hundreds of hours of ride data, interactive plots, all running in the browser, all served from SweatStack Pages.