I hereby claim:
- I am spicecadet on github.
- I am spicecadet (https://keybase.io/spicecadet) on keybase.
- I have a public key ASCC52FurGf2ViwJgzlK_AgtWUv73GE9xni_rser_gHULgo
To claim this, I am signing this object:
{ | |
"name": "edmund.turbin/wordpress-starter", | |
"description": "This is a basic wordpress install with some changes to the wp-content and core file locations", | |
"type": "dev", | |
"license": "GPL", | |
"authors": [ | |
{ | |
"name": "Edmund Turbin", | |
"email": "[email protected]" | |
} |
// gulp plugins | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var livereload = require('gulp-livereload'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var minify = require('gulp-minify-css'); | |
var imageop = require('gulp-image-optimization'); | |
var livereload = require('gulp-livereload'); |
#! /bin/bash | |
# create variables for directories | |
main_backup_dir=$HOME/Development/backups | |
vagrant_dir=$HOME/Development/hgv/hgv_data | |
vagrant_root_dir=$HOME/Development/hgv | |
today="$(date +'%m-%d-%Y')"_daily_backup | |
daily_backup_dir=$HOME/Development/backup/$today | |
# print directories to screen for testing | |
echo ----------: Main backup dir: $main_backup_dir |
# Environment Variables | |
#INSTALL= | |
#EMAIL= | |
#ENVIRONMENT="production" | |
#SERVICE= | |
#ASSERTIBLE_CODE= |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
#get siteurl option from prod and dev | |
PROD_SITEURL=$(wp @prod option get siteurl); | |
DEV_SITEURL=$(wp @dev option get siteurl); | |
#Export database from prod and import to dev | |
wp @prod db export - > prod.sql | |
wp @dev db import /srv/www/edmund/prod.sql | |
name: wp-nginx-redis | |
recipe: wordpress | |
config: | |
webroot: . | |
via: nginx | |
php: 8.2 | |
xdebug: true | |
database: mariadb |