Cross-Platform Setup Tutorial

Detecting your OS...

Android (Termux) — Full Walkthrough

  1. Install Termux from GitHub Releases.
  2. Open Termux once installation is complete.
  3. Grant storage permission for Termux.
  4. Update and upgrade packages.
  5. Install Git (and optionally curl).
  6. Clone the repository.
  7. Start Ginto from the project folder.
  8. Open your browser at http://localhost:2026.

Your Android version needs this file, or you can Download it Manually from the same official source.

Your mobile version needs this version: termux.apk Download Manually
termux-setup-storage
pkg update -y && pkg upgrade -y
pkg install -y git curl
git clone https://github.com/oliverbob/gntl
cd gntl && ./run.sh
http://localhost:2026

Essential Steps to Prevent Termination

  • Disable battery optimization for Termux: Settings → Apps → Termux → Battery → Unrestricted.
  • Enable wakelock from the Termux notification shade (Acquire wakelock) to keep CPU awake.
  • Check device-specific kill policies at dontkillmyapp.com (Samsung/OnePlus/etc).
  • Run as a foreground process when possible (e.g. termux-wake-lock or termux-run-command --foreground).
termux-wake-lock

iOS (iSH)

Your iOS version needs iSH shell, or you can Download it Manually from the same official source.

Your mobile version needs this version: iSH Download Manually

Install iSH shell, then run:

apk update && apk add git php84 && git clone https://github.com/oliverbob/gntl && cd gntl && ./run.sh

Windows

Install Git + Python, then run:

git clone https://github.com/oliverbob/gntl
cd gntl
./run.sh

macOS

Install Git/Python (or Homebrew), then run:

git clone https://github.com/oliverbob/gntl
cd gntl
./run.sh

Linux

Use your package manager for git/python if needed, then run:

git clone https://github.com/oliverbob/gntl
cd gntl
./run.sh

Other platforms:

Back to Login