From scaffold to running app
The latest starter removes the terminal questionnaire step. You scaffold, install dependencies, run dev, and complete project setup directly in a browser UI.
This prevents copy/paste mistakes during initial configuration and makes onboarding easier for developers who join the project later.
npx @zindua/create-app@latest my-app cd my-app npm install npm run dev
Wizard decisions captured safely
The setup page handles project identity, API key, and environment shaping in one place. Resulting values are written to your local env file with predictable defaults.
Because this step runs server-side in the app context, you avoid exposing setup secrets to frontend-only scripts.
Deploy with confidence
Before production deploy, run a CLI doctor and one test send to confirm credentials and outbound channel status.
This keeps your launch path clean and avoids discovering missing config after users hit login.