Quickstart
Get started with Shopware PaaS Native in just a few minutes. This guide will walk you through the essential steps to deploy your first Shopware application.
Prerequisites
Before you begin, ensure you have:
- A Git repository with your Shopware application prepared for PaaS. You can follow this guide for preparation.
- Access to the terminal / command line
- Git installed on your local machine. You can follow this guide.
Step 1: Install the PaaS CLI
First, install the Shopware PaaS Native CLI tool:
curl -L https://install.sw-paas-cli.shopware.systems | shVerify the installation:
sw-paas versionStep 2: Create your first project and connect your Git repository
Start the project creation wizard:
sw-paas project createThe wizard prompts you for the organization, project name, and Git repository. When asked whether to create a project SSH key for the repository, answer y. The CLI creates the key, displays its public key, and waits for you to add it to your repository settings:
- GitHub: Go to
Settings→Deploy keys→Add deploy key - GitLab: Go to
Settings→Repository→Deploy Keys - Bitbucket: Go to
Repository settings→Access keys
Ensure the key has read access to the repository, then confirm in the wizard that you added the key. The CLI then completes the project creation.
Step 3: Create and deploy an application instance of the project
Create your application:
sw-paas application createThen, deploy your application:
sw-paas application deploy createMonitor the deployment progress:
sw-paas watch