Deploy to Local VM

Initialise a Database with the Base Schema

Note: if 'wget' is not yet installed, you will need to install it with the following:

$ sudo apt install wget

Overview

  1. Download the Base Schema
  2. Create a Target Database
  3. Load into MySQL

Step 1 - Download the Base Schema

$ wget https://baseschema.com/resources/downloads/baseschema-latest.sql

Step 2 - Create a Target Database

$ echo "CREATE DATABASE launch001 CHARACTER SET = "utf8" | sudo mysql  

Step 3 - Load into MySQL

$ sudo mysql -D launch001 < baseschema-latest.sql