Cloning OZKi

The OZKi GitHub link is https://github.com/MICS-OZKi.

There are three GitHub OZKi repositories that you need to clone. In this example, we will use ozki directory at the root of the user's home directory as the parent directory for all OZKi repos.

To begin with, create the ozki directory and cd to it by typing the following:

$ mkdir ~/ozki
$ cd ~/ozki

Next, clone all of the needed OZKi repos: ozki-toolkit, ozki-oracle, and ozki-portal like the following:

# clone ozki-toolkit
$ git clone https://github.com/MICS-OZKi/ozki-toolkit.git
# clone ozki-oracle
$ git clone https://github.com/MICS-OZKi/ozki-oracle.git
# clone ozki-bot
$ git clone https://github.com/MICS-OZKi/ozki-bot.git

You should see three repo directories created in the ~/ozki directory as shown below:

.
├── ozki-oracle
├── ozki-bot
└── ozki-toolkit

Last updated