Quick Start Guide
Kick off a new Weldr workspace in under an hour. This walkthrough assumes you are using the hosted Free Cloud experience; self-hosting tips live in the installation appendix.
0. Get Access
app.weldr.dev resolves to the same deployment as weldr.dev. The separate host will roll out as we split the marketing and app surfaces.
1. Start a Conversation
I need a subscription analytics dashboard for B2B SaaS.
- Organizations own multiple products.
- Products stream usage events (MAU, API calls, seats).
- Finance wants monthly revenue rollups and churn flags.
2. Refine the Model Together
3. Choose Ownership Modes
> Experimental: Ownership toggles are rolling out gradually. If you do not see the Managed / Extended / Ejected controls yet, skip this step and continue the chat—your workspace will keep everything in Managed mode by default.
@custom block and checking ejected contracts for type compatibility.4. Preview, Test, and Iterate
5. Export to Code
When you are ready to merge into your own repository:
# Authenticate once in the hosted workspace (Settings → API Tokens)
weldr login
# Sync code locally
git clone git@github.com:your-org/your-app.git
yarn install # or pnpm install
weldr sync <chat-id> --out ./generated
# Inspect contracts & run tests
weldr contracts check
pnpm testCommit the generated changes alongside your custom code. From here the app behaves like any other Next.js project.
Troubleshooting
weldr contracts check to see which export drifted; update your ejected module or adjust the manifest.Ready for deeper configuration? Explore progressive ownership for advanced manifest patterns or reach out via #weldr-docs for launch support.