Skip to content

Instantly share code, notes, and snippets.

View license2e's full-sized avatar
🎯
Focusing

Ilya Shindyapin license2e

🎯
Focusing
View GitHub Profile
@license2e
license2e / MigrateWordpress.sql
Created May 31, 2017 08:20 — forked from markrickert/MigrateWordpress.sql
Wordpress Migration SQL Script
#Update the crucial options
UPDATE wp_options
SET option_value = 'http://newdomain.com'
WHERE option_name in ('siteurl', 'home');
#Make sure search engines can access the deployed site
UPDATE wp_options
SET option_value = 1
WHERE option_name = 'blog_public';
#Set the GUIDs to have the correct domain
UPDATE wp_posts
@license2e
license2e / serverless.yaml
Last active July 3, 2016 23:59 — forked from codepreneur/serverless.yaml
serverless framework/cli configuration file
service: "sadiavasio"
provider: "aws"
functions:
sadiavas:
handler: "index.graphql"
include:
- blog/
events:
- http:
path: "blog/graphql"