Create Page
Create Page CLI
Section titled âCreate Page CLIâStelo CMS provides command-line tools for rapid content creation and development workflows.
Page Creation
Section titled âPage CreationâBasic Page Creation
Section titled âBasic Page Creationânpm run stelo:create-page --title "About Us" --slug "about-us"Multilingual Page Creation
Section titled âMultilingual Page Creationânpm run stelo:create-page \ --title-en "About Us" \ --title-fr "Ă Propos" \ --slug-en "about-us" \ --slug-fr "a-propos"Page from Template
Section titled âPage from Templateânpm run stelo:create-page --template "landing-page" --title "New Product"Collection Creation
Section titled âCollection CreationâService Creation
Section titled âService Creationânpm run stelo:create-collection \ --type "service" \ --title "Web Development" \ --price 2500Blog Post Creation
Section titled âBlog Post Creationânpm run stelo:create-collection \ --type "blog-post" \ --title "New Article" \ --author "john@example.com"Bulk Operations
Section titled âBulk OperationsâImport from CSV
Section titled âImport from CSVânpm run stelo:import --file "content.csv" --type "services"Export Content
Section titled âExport Contentânpm run stelo:export --type "pages" --format "json"Development Helpers
Section titled âDevelopment HelpersâGenerate Sample Content
Section titled âGenerate Sample Contentânpm run stelo:seed --content-type "all" --count 10This section will be expanded with detailed CLI documentation.