Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user| <template> | |
| <va-card :title="$t('menu.products')"> | |
| <div class="row"> | |
| <div class="flex xs12 md4"> | |
| <va-input | |
| :value="term" | |
| :placeholder="$t('tables.searchByProduct')" | |
| @input="search" | |
| removable | |
| > |
| image: docker:git | |
| before_script: | |
| - git config --global user.email "[email protected]" | |
| - git config --global user.name "My Company" | |
| stages: | |
| # - test | |
| - development | |
| - stage |
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user| import $store from '../store' | |
| const remove = (vnode) => vnode.elm.parentElement.removeChild(vnode.elm) | |
| export default { | |
| install (Vue) { | |
| Vue.directive('permission', { | |
| inserted (el, binding, vnode) { | |
| if (binding.arg !== 'can') { | |
| return |
| <?php | |
| class BlaBlaBla extends Migration | |
| { | |
| // ... up, down whatever | |
| protected function existsForeignKey($table, $foreignKey) | |
| { | |
| $sql = "SELECT KEY_COLUMN_USAGE.CONSTRAINT_NAME | |
| FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE | |
| WHERE KEY_COLUMN_USAGE.TABLE_NAME = '{$table}' AND KEY_COLUMN_USAGE.COLUMN_NAME = '{$foreignKey}'"; |
| <?php | |
| declare(strict_types=1); | |
| namespace App\Application\Http; | |
| use Psr\Http\Message\ResponseInterface as Response; | |
| use Psr\Http\Message\ServerRequestInterface as Request; | |
| use Psr\Log\LoggerInterface; | |
| use Slim\Exception\HttpBadRequestException; |
| <?php | |
| class Xpto | |
| { | |
| public function addPoints($amount) | |
| { | |
| return $this->processPoints($amount, function ($amount, $currentPointsAvailable, $conversionRate) { | |
| return $currentPointsAvailable + ($amount * $conversionRate) | |
| }); | |
| } |
| export XDEBUG_REMOTE_HOST=$(ifconfig wlp6s0 | grep -oE 'inet [[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}' | cut -c6-) |
| #!/usr/bin/make | |
| include .env | |
| export | |
| .PHONY: help | |
| .DEFAULT_GOAL := help | |
| help: ## Display this help | |
| @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) |
| #!/bin/bash | |
| if [[ ! -d /var/www/app/node_modules ]]; then | |
| echo "~> installing dependencies" | |
| yarn install | |
| fi | |
| if [[ ! -f /home/node/bin/node && -f /usr/local/bin/node ]]; then | |
| echo "~> expose bin" | |
| cp /usr/local/bin/node /home/node/bin/node |