UNPKG

@nomadmystic/wordpress-scaffold-cli

Version:

This project is created to speed up WordPress development

15 lines (14 loc) 495 B
export default interface InitAnswers { databaseSetup?: boolean | undefined; databaseName?: string | undefined; databasePassword?: string | undefined; databaseUsername?: string | undefined; siteTitle?: string | undefined; siteAdminUser?: string | undefined; adminEmail?: string | undefined; siteAdminPassword?: string | undefined; projectName?: string | undefined; siteUrl?: string | undefined; devSiteUrl?: string | undefined; type?: 'project'; }