DEV Community

Rhonal Chirinos
Rhonal Chirinos

Posted on • Edited on

Install my development environment In Prestashop

Hello my friend,

The environment is very important, first to create a environment for make a module in PS, new need install Docker and to know use it.

Configure your environment

1 Open your terminal

2 Update the package Repository

sudo apt update 
Enter fullscreen mode Exit fullscreen mode

3 Install prerequisite Packages

sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
Enter fullscreen mode Exit fullscreen mode

4 Add GPG key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Enter fullscreen mode Exit fullscreen mode

5 Add Docker Repository

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 
Enter fullscreen mode Exit fullscreen mode

6 Specify Installation Source

sudo apt-cache policy docker-ce
Enter fullscreen mode Exit fullscreen mode

7 Install Docker

sudo apt install docker-ce -y
Enter fullscreen mode Exit fullscreen mode

8 Check Docker Status

sudo systemctl status docker 
Enter fullscreen mode Exit fullscreen mode

9 Learn how to use docker

10 Install PrestaCLI

composer global require rhonalchirinos/prestacli
Enter fullscreen mode Exit fullscreen mode

That's it!

Sentry image

Hands-on debugging session: instrument, monitor, and fix

Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.

RSVP here →

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay