AI Assistant

Install WordPressify

Requires Node.js 18 or later. Docker must be installed before running WordPressify.

Create a new directory for your project and scaffold it:

mkdir my-theme && cd my-theme
npx wordpressify

This generates the full file structure and installs dependencies. You're ready to go.

To skip the confirmation prompt, use the -y flag:

npx wordpressify -y

Update an Existing Project

To update the core WordPressify files (Docker, build pipeline, configs) without touching your src/ folder or dependencies:

npx wordpressify update

This overwrites infrastructure files like docker-compose.yml, gulpfile.js, Dockerfiles, and linting configs. It also updates the scripts section in your package.json while preserving your dependencies.

To skip the confirmation prompt:

npx wordpressify update -y

Next: Start Project

Set up your theme name and start the dev server.