This file contains 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 | |
cd /var/app/current/efl/laravel/ | |
sudo su | |
composer.phar self-update --2 | |
COMPOSER_MEMORY_LIMIT=-1 composer.phar require jkocik/laravel-profiler --dev | |
php artisan vendor:publish --provider="JKocik\Laravel\Profiler\ServiceProvider" | |
npm install laravel-profiler-client --save-dev | |
# change config/profiler.php and set production to true. | |
# php artisan profiler:server |
This file contains 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 | |
# | |
# Install dependencies | |
# | |
sudo yum install -y libevent-devel ncurses-devel gcc make bison pkg-config git | |
# | |
# https://github.com/tmux/tmux/wiki/Installing#from-version-control | |
# | |
git clone https://github.com/tmux/tmux.git |
This file contains 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
/* | |
* Copyright 2020 Google LLC. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains 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 | |
# | |
# Download and run the latest release version of the Certbot client. | |
# | |
# NOTE: THIS SCRIPT IS AUTO-GENERATED AND SELF-UPDATING | |
# | |
# IF YOU WANT TO EDIT IT LOCALLY, *ALWAYS* RUN YOUR COPY WITH THE | |
# "--no-self-upgrade" FLAG | |
# | |
# IF YOU WANT TO SEND PULL REQUESTS, THE REAL SOURCE FOR THIS FILE IS |
This file contains 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 | |
# Create Base AWS ECS Container Instance (Ubuntu 16.04) AMI | |
########################### NOTE ########################## | |
# To use the base Ubuntu ECS AMI | |
# Add following lines to UserData | |
# echo ECS_CLUSTER=ecs-cluster-name >> /etc/ecs/ecs.config | |
# systemctl enable [email protected] | |
# systemctl start [email protected] |