Setup
Installation
Download Q01SDK
q01sdk
can be installed in different OS using he follow URL:
- Linux
- macOS ARM
- macOS
- Windows
Binary Download
You can install q01sdk
with the use of curl
or wget
and downloading the correct operating system type:
- Linux
- macOS ARM
- macOS
- Windows
curl -kfsSL https://app.q01.io/api/v4/q01sdk/download?file=lin -o ~/Downloads/q01sdk
or
wget -q https://app.q01.io/api/v4/q01sdk/download?file=lin -O ~/Downloads/q01sdk
curl -kfsSL https://app.q01.io/api/v4/q01sdk/download?file=macarm -o ~/Downloads/q01sdk
or
wget -q https://app.q01.io/api/v4/q01sdk/download?file=macarm -O ~/Downloads/q01sdk
curl -kfsSL https://app.q01.io/api/v4/q01sdk/download?file=mac -o ~/Downloads/q01sdk
or
wget -q https://app.q01.io/api/v4/q01sdk/download?file=mac -O ~/Downloads/q01sdk
curl -kfsSL https://app.q01.io/api/v4/q01sdk/download?file=win -o %USERPROFILE%\Downloads\q01sdk
or
wget -q https://app.q01.io/api/v4/q01sdk/download?file=win -O %USERPROFILE%\Downloads\q01sdk
Local Environment
This configuration step is needed only to test a non production version of q01sdk tool!!
q01sdk env
Create a .env
file under the user home directory.
- Linux
- macOS ARM
- macOS
- Windows
mkdir ~/.q01sdk touch ~/.q01sdk/.env echo "Host="https://app.q01.io\"" > ~/.q01sdk/.env echo "Env="prod"" >> ~/.q01sdk/.env
mkdir ~/.q01sdk touch ~/.q01sdk/.env echo "Host="https://app.q01.io\"" > ~/.q01sdk/.env
mkdir ~/.q01sdk touch ~/.q01sdk/.env echo "Env="prod"" >> ~/.q01sdk/.env
- create the folder %USERPROFILE%.q01sdk
- create .env file with the following content
# %USERPROFILE%.q01sdk.env Host="https://app.q01.io" Env="prod"