MyCLI

Getting started

Getting started

Prerequisites

Install MyCLI

From the monorepo (development):

pnpm install
pnpm build
node apps/cli/dist/index.js --help

Create a project

my create my-app
# or non-interactive defaults:
my create my-app --yes --skip-install

The wizard configures application type, database, ORM, Docker, Git, CI/CD, and more.

Common workflows

cd my-app
my make module user --fields name:string,email:email
my add auth
my add ecommerce
my add docker
my commit -m "feat: add shop modules"
my deploy setup --provider railway

Locales

MYCLI_LOCALE=hi my create

Supported locales: en, hi, es, fr (see locales/).

Next steps