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
| ; Sample supervisor config file. | |
| ; | |
| ; For more information on the config file, please see: | |
| ; http://supervisord.org/configuration.html | |
| ; | |
| ; Notes: | |
| ; - Shell expansion ("~" or "$HOME") is not supported. Environment | |
| ; variables can be expanded using this syntax: "%(ENV_HOME)s". | |
| ; - Quotes around values are not supported, except in the case of | |
| ; the environment= options as shown below. |
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
| #!/bin/bash | |
| # | |
| # supervisord Startup script for the Supervisor process control system | |
| # | |
| # Author: Mike McGrath <mmcgrath@redhat.com> (based off yumupdatesd) | |
| # Jason Koppe <jkoppe@indeed.com> adjusted to read sysconfig, | |
| # use supervisord tools to start/stop, conditionally wait | |
| # for child processes to shutdown, and startup later | |
| # Erwan Queffelec <erwan.queffelec@gmail.com> | |
| # make script LSB-compliant |
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
| <?php | |
| namespace Arrow\Wysiwyg\Plugin; | |
| use Magento\Framework\DataObject; | |
| class WysiwygConfig | |
| { | |
| public function afterGetConfig($subject, DataObject $result) | |
| { |
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
| <?php | |
| namespace Arrow\Wysiwyg\Plugin; | |
| use Magento\Framework\DataObject; | |
| class WysiwygConfig | |
| { | |
| public function afterGetConfig($subject, DataObject $result) | |
| { |
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
| <?xml version="1.0" ?> | |
| <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> | |
| <type name="\Magento\Cms\Model\Wysiwyg\Config"> | |
| <plugin name="add_wysiwyg_data" type="\Arrow\Wysiwyg\Plugin\WysiwygConfig" sortOrder="10" /> | |
| </type> | |
| </config> |
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
| window.Clipboard = (function(window, document, navigator) { | |
| var textArea, | |
| copy; | |
| function isOS() { | |
| return navigator.userAgent.match(/ipad|iphone/i); | |
| } | |
| function createTextArea(text) { | |
| textArea = document.createElement('textArea'); |
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
| <VirtualHost *:80> | |
| ServerName www.example.com | |
| ServerAlias example.com *.example.com | |
| DocumentRoot /var/www/magento/example.com | |
| <Directory /var/www/magento/example.com> | |
| Options None | |
| Options +FollowSymLinks | |
| AllowOverride All |
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
| @mixin MQ($size) { | |
| @media only screen and (min-width: $size) { @content; } | |
| } |
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
| #!/bin/sh | |
| cd ../ | |
| env -i git reset --hard |
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
| #!/bin/bash | |
| #We changed the data directory to use "$HOME/Data" instead of "$HOME/.mysql-clh-data" | |
| DATA_DIR="$HOME/Data" | |
| #Uncomment to change the mysql user, defaults to root | |
| #MYSQL_USER="admin" | |
| #Uncomment to change the mysql host, defaults to localhost | |
| #MYSQL_HOST="mysql.local" | |
| #Uncomment to change the password, defaults to "" | |
| #MYSQL_PASS="changeme" |
NewerOlder