Dio is our reference command line interface (CLI) application for working with DBHub.io.
It can be used used to:
- transfer databases to and from the cloud (pushing and pulling)
- check their version history
- create branches, tags, releases, and commits
- diff changes (in a future release)
- and more... (eventually)
It's at a fairly early stage in its development, though the main pieces should all work. It certainly needs more polish to be more user-friendly though.
Dio requires Go to be installed (version 1.17+ is known to work). Building should just require:
$ go get github.com/sqlitebrowser/dio
$ go install github.com/sqlitebrowser/dioTo use it, do the following:
- Create a folder named
.dioin your home directory;
$ cd ~
$ mkdir .dio- Download
ca-chain-cert.pemto~/.dio/. For example:
$ cd ~/.dio
$ wget https://github.com/sqlitebrowser/dio/raw/master/cert/ca-chain.cert.pem- Generate a certificate file for yourself at DBHub.io and save it in
~/.dio/. - Create the following text file, and name it
~/.dio/config.toml:
[user]
name = "Your Name"
email = "youremail@example.org"
[certs]
cachain = "/home/username/.dio/ca-chain.cert.pem"
cert = "/home/username/.dio/username.cert.pem"
[general]
cloud = "https://db4s.dbhub.io"
- Change the
nameandemailvalues to your name and email address - Change
/home/usernameto the path to your home directory - Make sure
cachainpoints to the downloaded ca-chain.cert.pem file - Make sure
certpoints to your generated DBHub.io certificate
- Leave the
cloudvalue pointing to https://db4s.dbhub.io
To verify this file is set up correctly, type:
$ dio infowhich will display the information loaded from this configuration file.
Dio has a help option (dio help) which is useful for listing the available dio
commands, explaining their purpose, etc.