-
Notifications
You must be signed in to change notification settings - Fork 0
CLI
The CLI allows you to manage all of your website right from your terminal.
It has all of the features available in the admin interface, you can create backups, manage users, edit settings, create and edit posts and much more.
The only limitation the CLI has in comparison to the admin interface, is that the body of posts and pages cannot be edited.
Create a backup of the database in a json file.
php aurora db:backup [file_path]Restore the database from a json file.
php aurora db:restore [file_path]Create a new link.
php aurora links:createDelete a link.
php aurora links:delete [id_or_slug]Edit a link.
php aurora links:edit [id_or_slug]List the links.
php aurora links:listCreate a new page.
php aurora pages:createDelete a page.
php aurora pages:delete [id_or_slug]Edit a page.
php aurora pages:edit [id_or_slug]List the pages.
php aurora pages:listCreate a new post.
php aurora posts:createDelete a post.
php aurora posts:delete [id_or_slug]Edit a post.
php aurora posts:edit [id_or_slug]List the posts.
php aurora posts:listCreate a new tag.
php aurora tags:createDelete a tag.
php aurora tags:delete [id_or_slug]Edit a tag.
php aurora tags:edit [id_or_slug]List the tags.
php aurora tags:listCreate a new user.
php aurora users:createDelete a user.
php aurora users:delete [id_or_slug]Edit a user.
php aurora users:edit [id_or_slug]List the users.
php aurora users:listList the system settings.
php aurora settings:listSet the value of a system setting.
php aurora settings:set [name] [value]Update Aurora to the latest compatible version.
php aurora update