MySQL

  mysql:
    host: "localhost"
    port: 3306
    database: "RoyaleBanks"
    username: "root"
    password: "pass1234"
    useSSL: false
    verifyServerCertificate: false
    allowPublicKeyRetrieval: true

The mysql configuration simply contains the required information to establish a connection, to which we add three extra settings to be adjusted depending on the host preference and possible errors.

Last updated