Skip to content

Static Website

Any static website can be uploaded as an app. The only requirement is an index.html at the root.

Quickstart

bash
mkdir my-app
echo '<h1>Hello from Poe!</h1>' > my-app/index.html
app-platform apps publish --handle my-app --dir my-app

Using Vite

bash
npx vite build --outDir dist
app-platform apps publish --handle my-app --dir dist

Adding Synced-Store Later

When you're ready to add multi-user sync, see the No-Build Todo App.