(Make sure you have homebrew installed)
brew tap riboseinc/easy-rsa
brew install easy-rsa
acmeco: Are you sure you want to destroy the 'acmeco' VM? [y/N] y | |
==> acmeco: Forcing shutdown of VM... | |
==> acmeco: Destroying VM and associated drives... | |
Bringing machine 'acmeco' up with 'virtualbox' provider... | |
==> acmeco: Importing base box 'laravel/homestead'... | |
==> acmeco: Matching MAC address for NAT networking... | |
==> acmeco: Checking if box 'laravel/homestead' is up to date... | |
==> acmeco: Setting the name of the VM: acmeco | |
==> acmeco: Fixed port collision for 3306 => 33060. Now on port 2200. | |
==> acmeco: Clearing any previously set network interfaces... |
(Make sure you have homebrew installed)
brew tap riboseinc/easy-rsa
brew install easy-rsa
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: 'cwilby/php7.1-laravel-circleci' | |
- image: 'circleci/buildpack-deps:latest' | |
- image: 'circleci/mysql:5.6.38-ram' | |
- image: 'circleci/node:8.12-browsers' | |
- image: 'circleci/redis:latest' |
<?php | |
class Twig2Schema | |
{ | |
/** | |
* @param \Twig\Environment $twig - A twig environment containing loaded templates | |
* @param $twigTemplateName - The name of the template to infer variables from | |
* @param $config - A configuration object for this function | |
* @return array | |
*/ |
TastyIgniter is a self-hosted, open source order management system to give businesses a way to provide online pickup/delivery for their customers.
<?php | |
namespace Laravel\Nova\Metrics; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Support\Carbon; | |
use Laravel\Nova\Nova; | |
abstract class Value extends RangedMetric | |
{ |
#!/bin/bash | |
echo 'Installing Grafana-SMS...' | |
# Creates folder, sets permissions to current user, and changes directory | |
sudo mkdir /usr/local/share/grafana-sms | |
sudo chown $(whoami): /usr/local/share/grafana-sms | |
cd /usr/local/share/grafana-sms | |
# Downloads the latest release of Grafana-SMS |
#!/bin/bash | |
# clone the repo | |
git clone https://github.com/mindandmill/grafana-sms /opt/grafana-sms | |
# go to that directory | |
cd /opt/grafana-sms | |
# ask for node red token, then make an .env file and store it as the value for NODERED_TOKEN | |
read -p "Enter the Twilio Node-RED token" token |