Project deployment with the Command Line Interface (CLI)
This is a step-by-step guide for deploying your project on Strapi Cloud for the first time, using the Command Line Interface.
Before you can deploy your Strapi application on Strapi Cloud using the Command Line Interface, you need to have the following prerequisites:
- Be a first-time Strapi Cloud user: you must never have deployed a project with Strapi Cloud before, and your free trial must still be available.
- Have a Google, GitHub or GitLab account.
- Have an already created Strapi project (see Installing from CLI in the Developer Documentation), stored locally. The project must be less than 100MB.
- Have available storage in your hard drive where the temporary folder of your operating system is stored.
Logging in to Strapi Cloud
Open your terminal.
Navigate to the folder of your Strapi project, stored locally on your computer.
Enter the following command to log into Strapi Cloud:
- Yarn
- NPM
yarn strapi login
npx run strapi login
In the browser window that opens automatically, confirm that the code displayed is the same as the one written in the terminal message.
Still in the browser window, choose whether to login via Google, GitHub or GitLab. The window should confirm the successful login soon after.
Deploying your project
From your terminal, still from the folder of your Strapi project, enter the following command to deploy the project:
- Yarn
- NPM
yarn strapi deploy
npx run strapi deploy
Follow the progression bar in the terminal until confirmation that the project was successfully deployed with Strapi Cloud.
Automatically deploying subsequent changes
By default, when creating and deploying a project with the Cloud CLI, you need to manually deploy again all subsequent changes by running the corresponding deploy
command everytime you make a change.
Another option is to enable automatic deployment through a git repository. To do so:
- Host your code on a git repository, such as GitHub or GitLab.
- Connect your Strapi Cloud project to the repository (see the Connected repository setting in Projects Settings > General).
- Still in Projects Settings > General tab, tick the box for the "Deploy the project on every commit pushed to this branch" setting. From now on, a new deployment to Strapi Cloud will be triggered any time a commit is pushed to the connected git repository.
Automatic deployment is compatible with all other deployment methods, so once a git repository is connected, you can trigger a new deployment to Strapi Cloud from the Cloud dashboard, from the CLI, or by pushing new commits to your connected repository.
⏩ What to do next?
Now that you have deployed your project via the Command Line Interface, we encourage you to explore the following ideas to have an even more complete Strapi Cloud experience:
- Fill in your billing information to prevent your project from being suspended at the end of the trial period.
- Visit the Cloud dashboard to follow insightful metrics and information on your Strapi project.
- Check out the full Command Line Interface documentation to learn about the other commands available.