All Projects → statamic → cli

statamic / cli

Licence: other
Install and manage your Statamic v3 projects from the command line.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to cli

v2-addons
Addons for Statamic v2
Stars: ✭ 58 (-6.45%)
Mutual labels:  statamic, statamic-v2
statamic-video-embed
A field type for embedding YouTube and Vimeo Videos
Stars: ✭ 16 (-74.19%)
Mutual labels:  statamic, statamic-v2
spock
Automatically perform git commits, pushes, and other cli actions when Statamic content changes
Stars: ✭ 96 (+54.84%)
Mutual labels:  statamic, statamic-v2
preset-tailwindcss
DEPRECATED: Statamic 3 starts with TailwindCSS out of the box.
Stars: ✭ 23 (-62.9%)
Mutual labels:  statamic
ideas
💡Discussions on ideas and feature requests for Statamic 3
Stars: ✭ 23 (-62.9%)
Mutual labels:  statamic
vscode-antlers-language-server
Provides rich language features for Statamic's Antlers templating language, including code completions, syntax highlighting, and more.
Stars: ✭ 22 (-64.52%)
Mutual labels:  statamic
v2-hub
Statamic 2 - Feature Requests and Bug Reports
Stars: ✭ 95 (+53.23%)
Mutual labels:  statamic
starter-kit-doogie-browser
Statamic Starter Kit: Doogie Browser
Stars: ✭ 39 (-37.1%)
Mutual labels:  statamic

Statamic CLI Tool

Statamic 3.0+

🌴 Install and manage your Statamic v3 projects from the command line.

Installing the CLI tool

composer global require statamic/cli

Make sure to place Composer's system-wide vendor bin directory in your $PATH so the statamic executable can be located by your system. Here's how.

Once installed, you should be able to run statamic {command name} from within any directory.

GitHub authentication

When you install starter kits, the CLI might present you with a warning that the GitHub API limit is reached. Generate a Personal acces token and paste it in your terminal with this command so Composer will save it for future use:

composer config --global --auth github-oauth.github.com [your_token_here]

Read more on this in the Composer Docs.

Updating the CLI tool

composer global update statamic/cli

Run this command to update the CLI tool to the most recent published version.

Using the CLI tool

Installing Statamic

You may create a new Statamic site with the new command:

statamic new my-site

This will present you with a list of supported starter kits to select from. Upon selection, the latest version will be downloaded and installed into the my-site directory.

You may also pass an explicit starter kit repo if you wish to skip the selection prompt:

statamic new my-site statamic/starter-kit-cool-writings

Checking Statamic versions

From within an existing Statamic project root directory, you may run the following command to quickly find out which version is being used.

statamic version

Updating Statamic

From within an existing Statamic project root directory, you may use the following command to update to the latest version.

statamic update

This is just syntactic sugar for the composer update statamic/cms --with-dependencies command.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].