This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Constellation # | Min card level | Min card star | |
---|---|---|---|
5 | 18 | 2 simple | |
6 | 20 | 2 simple | |
7 | 22 | 3 simple | |
8 | 24 | 3 simple | |
9 | 26 | 4 simple | |
10 | 28 | 4 simple | |
11 | 30 | 5 simple | |
12 | 32 | 5 simple | |
13 | 34 | 1 silver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
m.id_manufacturer AS `ID`, | |
m.active AS `Active (0/1)`, | |
m.name AS `Name`, | |
IFNULL(ml.description, '') AS `Description`, | |
IFNULL(ml.short_description, '') AS `Short description`, | |
IFNULL(ml.meta_title, '') AS `Meta title`, | |
IFNULL(ml.meta_keywords, '') AS `Meta keywords`, | |
IFNULL(ml.meta_description, '') AS `Meta description`, | |
CONCAT('https://www.my-prestashop.com/img/m/', m.id_manufacturer, '.jpg') AS `Image URL` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN apt update | |
RUN apt upgrade -y | |
RUN apt install -y apt-utils | |
RUN a2enmod rewrite | |
RUN apt install -y libmcrypt-dev | |
RUN docker-php-ext-install mcrypt | |
RUN apt install -y libicu-dev | |
RUN docker-php-ext-install -j$(nproc) intl | |
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev | |
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ |