Getting Started
To get started, you need to create a Koneksi account and verify.
Access the Web Application
Access the Koneksi Web Application here.
Account Registration
Launch the Web Application
Click on the 'Create an Account' link below the login button

You will then be redirected to the Create Account form. Input all the necessary details needed then hit the 'Create Account' button to proceed.

After you create an account, a verification email will be sent to your email.
Account Verification
Open the verification email
Enter the verification code on the 'Verify Your Email' screen then hit the 'Verify Email' button

Your account will now be marked as Verified in the system. Once verified, you will then be redirected to the Koneksi Backup File Explorer page.
Unverified users have limited access until verification is complete.

Once you're done creating your account, you can explore the Web Application features here.
Installation
Download the Koneksi Desktop app installer here.
Install the app on your machine
For Mac Users, you will encounter app is damaged notification on your machine, this is because the app isn't code signed yet. We can bypass the code sign error by running
sudo xattr -rd com.apple.quarantine <path/to/application.app>
on the terminal.Hit 'Enter' then input your password
Hit 'Enter again
d. For Windows users, you should be able to install the app without any issues
Account Registration
Launch the Koneksi Desktop App
Click on the 'Create an Account' link below the login button

You will then be redirected to the Create Account form. Input all the necessary details needed then hit the 'Create Account' button to proceed.

After you create an account, a verification email will be sent to your email.
Account Verification
Open the verification email
Enter the verification code on the 'Verify Your Email' screen then hit the 'Verify Email' button

Your account will now be marked as Verified in the system. Once verified, you will then be redirected to the Koneksi Backup File Explorer page.
Unverified users have limited access until verification is complete.

Once you're done creating your account, you can explore the Desktop Application features here.
Installation
To start using CLI you have to install the Koneksi Desktop App first. Follow the App Installation instructions provided here.
The Koneksi CLI should be automatically installed when you install the Koneksi Desktop application.
After installation:
For Windows:
you can run the command using the command
koneksi
in the Command Prompt or Powershell window.
For MacOS:
the CLI is automatically installed to
/users/<your-profile>/bin/koneksi/
. This means you can run it from any terminal window by simply typingkoneksi
If you encounter any issues, refer to the Troubleshooting section at the end of this page.
Using the CLI
After installing the Koneksi Desktop App, open terminal.
For Mac:
Press the Command (⌘) key and the Spacebar simultaneously to open Spotlight.2. Type "terminal" and press Enter or Return.
For Windows:
Click the Start button and Type "Terminal"
Select the "Windows Terminal/Command Prompt" app.
In this guide, I will be using Windows Command Prompt as my terminal
2. Type in koneksi
and press Enter. Then you will see the CLI help information as seen below.
koneksi
Example Output
Koneksi CLI
USAGE:
koneksi [command] [flags]
COMMANDS:
auth Authentication related commands
completion Generate the autocompletion script for the specified shell
dashboard Access dashboard features and analytics
directory Directory management commands
file Manage files
health Check the health status of the Koneksi API
help Get help with Koneksi CLI commands
peers Manage peers
profile Profile-related commands
service-account Service-Account related commands
settings Manage account and application settings
version Print the version information
Get detailed help:
koneksi help [command]
3. You can now start using CLI commands with your terminal!
Account Registration
To register an account you can type:
koneksi auth register --first-name "Your First Name" --last-name "Your Last Name" --email "your@email.com" --password "yourpassword" --confirm-password "yourpassword"
Example Output
[INFO] Sending registration request...
[SUCCESS] Status Code<200>: user registered successfully
Make sure to change the flag values with your actual details.
After changing values with your details, just press Enter to register.
After you create an account, a verification email will be sent to your email.
Request Token
Before going in to account verification, you will need your access token. You can request a token with this command:
koneksi auth login --email "youremail@gmail.com" --password "yourpassword"
Make sure to save your access token by copying and pasting onto your notepad.
[INFO] Sending login request...
[SUCCESS] Status Code<200>: token requested successfully
=== Authentication Tokens ===
[INFO] Your authentication tokens have been received successfully.
[INFO] Please save these tokens securely for future API requests:
[INFO] ACCESS TOKEN:
<AccessToken>
[INFO] REFRESH TOKEN:
<RefreshToken>
[INFO] To use these tokens in API requests, include the access token in your Authorization header:
[INFO] Authorization: Bearer <access-token>
Account Verification
Open the verification email.
Verify your account using the following command:
koneksi auth verify-account --email "youremail@gmail.com" --code "123456"
Don't forget to change the flag values with your actual email, code and access token.
[INFO] Verifying account...
[SUCCESS] Status Code<200>: account verified successfully
[INFO] Your account has been successfully verified!
Your account will now be marked as Verified in the system.
Once you're done creating your account, you can explore the Command-Line Interface features here.
Troubleshooting
For Windows
If you cannot run the koneksi
command, try the following steps:
Restart your terminal: After installing Koneksi Desktop, you may need to restart any open Command Prompt or PowerShell windows to refresh the PATH.
Check if CLI is in your PATH: Run the following command to verify if the CLI installation directory is in your PATH:
echo %PATH%
You should see C:\Program Files\Koneksi\bin
in the output.
Manual PATH addition: If the CLI directory is not in your PATH, you can add it manually:
# Run PowerShell as Administrator
$cliDir = "C:\Program Files\Koneksi\bin"
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";" + $cliDir, "Machine")
After running the command, restart your terminal.
Direct Access: If you cannot modify your PATH, you can access the CLI directly:
"C:\Program Files\Koneksi\bin\koneksi.exe"
Or find the CLI in the application resources folder:
"%LOCALAPPDATA%\Programs\koneksi-desktop\resources\bin\koneksi-cli-windows-amd64.exe"
For MacOS
If you cannot run the CLI command, try the following:
Restart your terminal completely
Reload your shell configuration:
source ~/.zshrc
Manual access: If needed, access the CLI directly from the app resources:
/Applications/koneksi-desktop.app/Contents/Resources/bin/koneksi-cli-darwin-arm64
Use our authentication command-line tool, follow the instructions here.
Last updated