Setup flow

Scaffold

Generate the exact commands to create the project and connect the repo.

What you need before starting

  • Have Node.js and npm available on your machine.
  • Be ready to create the local folder and connect the remote repo.

Terminal steps

Create the project folder and the Next.js scaffold first.

Create the Next.js app

npx create-next-app@latest app-setup-flow --ts --tailwind --app --eslint --use-npm --src-dir false --import-alias "@/*"

Enter the folder and prepare the first commit

cd app-setup-flow
git init
git add .
git commit -m "Initial scaffold for App Setup Flow"

Create the remote and push

gh repo create app-setup-flow --public --source=. --remote=origin --push

What to check before running

Keep the generated commands aligned with the current project context.

Update the intake inputs if the project, repo, or folder names still need adjustment before copying commands.

Scaffold completion

0/3 done