Skip to content

Create Page

Stelo CMS provides command-line tools for rapid content creation and development workflows.

Terminal window
npm run stelo:create-page --title "About Us" --slug "about-us"
Terminal window
npm run stelo:create-page \
--title-en "About Us" \
--title-fr "À Propos" \
--slug-en "about-us" \
--slug-fr "a-propos"
Terminal window
npm run stelo:create-page --template "landing-page" --title "New Product"
Terminal window
npm run stelo:create-collection \
--type "service" \
--title "Web Development" \
--price 2500
Terminal window
npm run stelo:create-collection \
--type "blog-post" \
--title "New Article" \
--author "john@example.com"
Terminal window
npm run stelo:import --file "content.csv" --type "services"
Terminal window
npm run stelo:export --type "pages" --format "json"
Terminal window
npm run stelo:seed --content-type "all" --count 10

This section will be expanded with detailed CLI documentation.