Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 555 Bytes

File metadata and controls

23 lines (18 loc) · 555 Bytes

BookDataBase

A basic reading list desktop GUI app that connects to, and stores data in a MySQL server.

Requirements:

Configurations

In src/config.json specify the username and password to the MySQL server.

  • e.g:
    {

      "MYSQL_USER": "root",
      "MYSQL_PASS": "diploid46",
      "MYSQL_DRIVER": "com.mysql.jdbc.Driver",
      "MYSQL_URL": "jdbc:mysql://localhost/",
      "MYSQL_PORT": 3306
    

    }