From 82d7870fe45bc4b5c20150b0041f9e4ae23e574b Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Mon, 5 Aug 2019 07:09:14 +0000 Subject: Build Tools: Add a WordPress Development Environment. This commit adds the first iteration of a Docker-based config for setting up a local WordPress development environment. Props pento, noisysocks, mcsf, pbearne, isabel_brison. See #47767. git-svn-id: https://develop.svn.wordpress.org/trunk@45745 602fd350-edb4-49c9-b593-d223f7449a82 --- tools/local-env/mysql-init.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tools/local-env/mysql-init.sql (limited to 'tools/local-env/mysql-init.sql') diff --git a/tools/local-env/mysql-init.sql b/tools/local-env/mysql-init.sql new file mode 100644 index 0000000000..911d6eb3d2 --- /dev/null +++ b/tools/local-env/mysql-init.sql @@ -0,0 +1,8 @@ +/** + * MySQL server init. + * + * SQL queries in this file will be executed the first time the MySQL server is started. + */ + +CREATE DATABASE IF NOT EXISTS wordpress_develop; +CREATE DATABASE IF NOT EXISTS wordpress_develop_tests; -- cgit v1.2.3