Skip to content

Instantly share code, notes, and snippets.

View breadface's full-sized avatar

jesmine breadface

View GitHub Profile
@breadface
breadface / functions.php
Created May 12, 2017 16:29 — forked from kjohnson/functions.php
Max File Size filter for All-in-One WP Migration
<?php
add_filter( 'ai1wm_max_file_size', 'my_ai1wm_max_file_size', 10, 1 );
function my_ai1wm_max_file_size( $max_file_size ){
$new_max_file_size = 1073741824;
return $new_max_file_size;
}
// apply_filters( ‘ai1wm_max_file_size’, AI1WM_MAX_FILE_SIZE ) );
@breadface
breadface / bitbucket-pipelines.yml
Created January 25, 2023 17:39 — forked from jincod/bitbucket-pipelines.yml
Docker deployment using Bitbucket Pipelines and Heroku
pipelines:
default:
- step:
name: build and publish docker image
services:
- docker
caches:
- docker
script:
- docker build -t $APP_NAME .