Jenyamba

Results 36 comments of Jenyamba

Hi @markshust I've created a [pull request](https://github.com/markshust/docker-magento/pull/1045) that introduces a script for setting up a Magento 2 environment and configuring PWA Studio. The script automates the installation of sample data...

Hi, @skygunner It seems like there might be a typo in the package name. The correct package name is 'libnss3-tools' instead of 'libnssl3-tools'. You can try installing it using the...

Hi, @cbartellds This error is typically related to OpenSSL It will help you: ```code sudo apt update sudo apt install libssl-dev ``` After updating OpenSSL, try running the command again....

1. The shebang was changed from `#!/bin/bash` to `#!/usr/bin/env bash`. 2. I added the documentation to the README and Makefile. 3. Can you check it again? The problem is that...

I added compatibility with MacOS in the previous commit, so now it should work on MacOS. Please feel free to check it.

By the way, I can modify this script so that the user can create an admin user or new customer account.

Hi, @markshust Good idea! I`ll do it in my next commit.

## Updated 25.02.2024: **Admin User Creation**: The script includes a function to create an admin user account, allowing customization of username, email, first name, last name, and password. **Customer Account...

Hi, @markshust I took into account all your amendments and simplified the script. Now it's four times shorter, but it works as well as before. Feel free to check it!

It's because the container already exists cached `auth.json` with the wrong credentials. There are 2 ways to fix this issue: 1 Way (IMHO better than 2): 1. Drop inside the...