I hereby claim:
- I am richardstyles on github.
- I am styles (https://keybase.io/styles) on keybase.
- I have a public key ASAGE_lIU_glgK27tOjJULyRVPj-9Hf8FRT8ifC8s3nnswo
To claim this, I am signing this object:
| { | |
| "sites": [ | |
| { | |
| "name": "laravel-1", | |
| "php": "[email protected]", | |
| "branch": "main", | |
| "secure": true, | |
| "vcs": "https://github.com/laravel/laravel", | |
| "post-build": [ | |
| "cp .env.example .env", |
| #!/bin/bash | |
| # Author: Frank Gabriel, 01.01.2019 | |
| # Credits Kalle Lilja, @SprockTech and others | |
| # Script location: /etc/letsencrypt/renewal-hooks/post/unifi-import-cert.sh (important for auto renewal) | |
| # Tested with Debian 9 and UniFi 5.8.28, 5.9.22 and 5.9.32 - should work with any recent Unifi and Ubuntu/Debian releases | |
| #************************************************ | |
| #******************Instructions****************** | |
| #************************************************ |
| #!/bin/bash | |
| # Author: Frank Gabriel, 01.01.2019 | |
| # Credits Kalle Lilja, @SprockTech and others | |
| # Script location: /etc/letsencrypt/renewal-hooks/post/unifi-import-cert.sh (important for auto renewal) | |
| # Tested with Debian 9 and UniFi 5.8.28, 5.9.22 and 5.9.32 - should work with any recent Unifi and Ubuntu/Debian releases | |
| #************************************************ | |
| #******************Instructions****************** | |
| #************************************************ |
| <?php | |
| namespace App\Observers; | |
| use App\User; | |
| class UserObserver | |
| { | |
| /** |
I hereby claim:
To claim this, I am signing this object:
| # | |
| # REQUIRES: | |
| # - server (the forge server instance) | |
| # - site_name (the name of the site folder) | |
| # - sudo_password (random password for sudo) | |
| # - db_password (random password for database user) | |
| # - event_id (the provisioning event name) | |
| # - callback (the callback URL) | |
| # |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
| #!/usr/bin/env bash | |
| echo "Starting Bootstrap" | |
| echo "Running update..." | |
| yum update | |
| echo "Installing requirements.." | |
| yum -y install httpd php | |
| echo "setup HTML dir" | |
| rm -rf /var/www/html |
| Ext.define('Ext.ux.CKeditor', { | |
| extend: 'Ext.form.field.TextArea', | |
| alias: 'widget.ckeditor', | |
| defaultListenerScope: true, | |
| listeners: { | |
| instanceReady: 'instanceReady', | |
| resize: 'resize', | |
| boxready : 'onBoxReady' |