Quick start

This section contains instructions for installing CS-Cart Enterprise locally. Local instances are used for development, demos, and experimentation purposes.

  1. Install Docker
  2. Install git
  3. Clone the repository:
    git clone git@github.com:cscart/enterprise.git && cd enterprise
    
  4. Execute the installation of composer packages:
    docker run --rm -u "$(id -u):$(id -g)" -v $(pwd):/var/www/html -w /var/www/html -e COMPOSER=composer.json.dist -e XDG_CACHE_HOME=/var/www/html/.cache laravelsail/php81-composer:latest composer cs:init
    
  5. Start containers:
    vendor/bin/sail up -d
    
    The first launch of containers can take a long time depending on system performance.
  6. Install CS-Cart:
    vendor/bin/sail composer cs:setup
    
  7. Run application workers:
    vendor/bin/sail artisan queue:work
    

Done, now you can check that everything is working. Use links:

Laravel Sail

You can learn more about container management via Laravel Sail here: https://laravel.com/docs/10.x/sail.