Pg 109
the constructor for MySQLDatabaseConfig requires a port number so instead of:
let databaseConfig = MySQLDatabaseConfig(
hostname: “localhost”,
username: “vapor”,
password: “password”,
database: “vapor”)
it should be:
let databaseConfig = MySQLDatabaseConfig(
hostname: “localhost”,
port: 3306,
username: “vapor”,
password: “password”,
database: “vapor”)
Otherwise it doesn’t compile.