Shared host
Open the live public build now
Best when you want to inspect the current civic surfaces without waiting for a new package.
Try app
Use the live public host when you want immediate access, request a build link when you need a handoff package, or bring the whole stack up locally when you need full control.
This page gathers the practical ways to get into PARA: open the current experience, ask for a build link, or understand the local setup without hunting through scattered notes.
Access paths
Shared host
Best when you want to inspect the current civic surfaces without waiting for a new package.
Android APK
Best when you need the latest hosted Android binary without waiting for a manual handoff.
Run locally
Best when you need full control over the app client, AppView, and PDS while testing.
Android package
The current Android package is available directly. Keep the request draft for iOS, private tester handoffs, or when you need a newer internal build than the hosted APK.
Fallback request
Hi PARA team,
I'd like access to the current build link.
Name or team:
Platform:
How I want to test PARA:
Preferred turnaround:
Who should receive the build:
Thanks. The request template stays useful for non-Android requests and for newer internal packages.
Run from source
The public site and the app client live in different workspaces, so they start separately even though they support the same demo story.
cd /Users/mlv/Desktop/MASTER/website
pnpm install
pnpm devcd /Users/mlv/Desktop/MASTER/PARA
yarn
yarn webWhy this split exists: the website repo serves the public docs and marketing site. The PARA repo is the actual app client.
Backend path
The backend development flow in watx is the part that expects Docker. This is
the short path that matches the repo runbook.
cd /Users/mlv/Desktop/MASTER/watx
make nvm-setup
make deps
make build
make run-dev-env cd /Users/mlv/Desktop/MASTER/watx
cp -n .env.shared-demo.example .env.shared-demo
make run-dev-env-persistent The shared-demo runbook advertises the public identities as https://pds.paramx.social and https://appview.paramx.social.
Production-style serve
The PARA repo also documents a production-style web bundle flow through the Go server that serves the built app.
cd /Users/mlv/Desktop/MASTER/PARA
yarn
yarn build-web
cd bskyweb
go mod tidy
go build -v -tags timetzdata -o bskyweb ./cmd/bskyweb
./bskyweb serve --appview-host=http://localhost:2584 For the current shared demo host instead of the local AppView port, swap the final flag
to --appview-host=https://appview.paramx.social.
Read next