Get Started

Installation

One command, a few prompts, and your app is running locally.

Accept Your GitHub Invite

After purchase, check your email (including spam) for the invite and accept it before moving on.

You can also visit github.com/Loqode/vue-starter — GitHub shows a banner there if an invite is pending.

Open Your Terminal

This is the app you'll type commands into.

  • macOS — press Cmd + Space, type "Terminal", hit Enter
  • Windows — press the Start key, type "PowerShell", hit Enter
  • Linux — press Ctrl + Alt + T (or search "Terminal")

Run the Installer

In your terminal, cd to where you keep your projects. If you don't have one:

cd ~
mkdir apps
cd apps

Then:

npx @loqode/create-vue-starter@latest

If you see command not found: npx, install Node.js first — see Prerequisites.

If it asks Ok to proceed? (y), press Y then Enter.

Windows only — if you see running scripts is disabled on this system, run this once and answer Y, then retry the installer:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned

Follow the prompts — the CLI walks you through naming your app, pasting a Supabase token, picking a region, and authorizing GitHub. Done in under a minute.

Start the Dev Server

cd my-app
npm run dev

Replace my-app with whatever you called your app. Open http://localhost:3000.

Verify

  1. Click Sign up and create an account
  2. Complete the onboarding — team name and display name
  3. Confirm the dashboard loads
  4. Go to Settings → Members and confirm you're listed as the owner

Next Steps

  • Version Control — commit your baseline to GitHub before making changes
  • Claude Code — optional but highly recommended, it's how you'll keep building
  • Cloudflare — deploy to production

If the quick install didn't work, use Manual setup to do every step by hand.