Getting Started (Developer)#
This guide explains how to set up your environment, build, and run bgscan locally for development.
Read first: Contributing — branching, commit conventions, and PR workflow.
Prerequisites#
- Go 1.26.3+ (see
go.modfor the exact version) - Git
- For Android builds: Android NDK
1. Clone the repository#
git clone https://github.com/MohsenBg/bgscan.git
cd bgscan2. Create a branch#
git checkout -b feature/my-changeSee Contributing for branch naming conventions.
3. Install dependencies#
bgscan uses a companion tool called bgscan-builder to fetch and build the project’s dependencies. The install scripts download it for you, place it in the project root, and use it to fetch the correct dependency build for your OS/architecture.
Linux / macOS
./scripts/install-deps.shWindows
./scripts/install-deps.ps1This script will:
- Download
bgscan-builderinto the project root. - Run
bgscan-builder setup-dev --project-dir <project-root>to download the correct dependencies for your OS/arch and place them in the right directory.
4. Build and run#
Once dependencies are installed:
go mod tidy
go run ./cmd/bgscan/The startup health checks run first. Once they pass, press Enter to enter the TUI.
Building Releases#
To build release artifacts, you also need bgscan-builder. If you don’t already have it from the dependency step, install it:
Linux / macOS
./scripts/install-builder.shWindows
./scripts/install-builder.ps1Build commands#
bgscan-builder release -os linux -arch amd64
bgscan-builder release -os android -arch arm64 -ndk-dir /opt/android-ndk
bgscan-builder release -os all -arch all -dest ./distBuilding for Android#
Android builds require the Android NDK. Pass its path with -ndk-dir:
bgscan-builder release -os android -arch arm64 -ndk-dir /opt/android-ndkbgscan-builder reference#
Builds release artifacts for one or more OS/architecture combinations.
Flags:
| Flag | Description |
|---|---|
-arch string | Target architecture (amd64, arm64, arm32, amd32, all) |
-dep-version string | Dependencies version tag (default "v1.0") |
-dest string | Release output directory (default "./dist") |
-ndk-dir string | Android NDK root directory |
-os string | Target operating system (linux, windows, macos, android, all) |
-project-dir string | Path to the bgscan project |
-xray-version string | Xray version tag (default "v26.3.27") |