note-mysql is a sample database to try note-api.
Execute below command, then virtual machine starts and install mysql, create table.
$ git clone https://github.com/shiba-hiro/note-mysql.git
$ cd note-mysql
$ vagrant up
If Docker is available, below command will work instead of vagrant.
$ git clone https://github.com/shiba-hiro/note-mysql.git
$ cd note-mysql
$ sudo docker run -dt -p 3306:3306 -v $PWD/data/init.sql:/docker-entrypoint-initdb.d/init.sql -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --name note-mysql mysql