mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
* feat: add docs and CI workflow for publishing to onsonr.dev * (refactor): Move hway,motr executables to their own repos * feat: simplify devnet and testnet configurations * refactor: update import path for didcrypto package * docs(networks): Add README with project overview, architecture, and community links * refactor: Move network configurations to deploy directory * build: update golang version to 1.23 * refactor: move logger interface to appropriate package * refactor: Move devnet configuration to networks/devnet * chore: improve release process with date variable * (chore): Move Crypto Library * refactor: improve code structure and readability in DID module * feat: integrate Trunk CI checks * ci: optimize CI workflow by removing redundant build jobs --------- Co-authored-by: Darp Alakun <i@prad.nu>
69 lines
1.4 KiB
Bash
Executable File
69 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
ROOT_DIR=$(git rev-parse --show-toplevel)
|
|
|
|
# Function to install a Go binary if it doesn't exist
|
|
function go_install() {
|
|
if ! command -v "$1" &>/dev/null; then
|
|
echo "Installing $1..."
|
|
go install "github.com/$1"
|
|
fi
|
|
}
|
|
|
|
# Function to install a Cargo binary if it doesn't exist
|
|
function cargo_install() {
|
|
if ! command -v "$1" &>/dev/null; then
|
|
echo "Installing $1..."
|
|
cargo install "$1"
|
|
fi
|
|
}
|
|
|
|
# Function to install a uv tool if it doesn't exist
|
|
function uv_install() {
|
|
if ! command -v "$1" &>/dev/null; then
|
|
echo "Installing $1..."
|
|
uv tool install "$1" --force
|
|
fi
|
|
}
|
|
|
|
# Function to initialize git credentials
|
|
function set_git() {
|
|
git config --global user.name "Darp Alakun"
|
|
git config --global user.email "i@prad.nu"
|
|
|
|
# Check if the GITHUB_TOKEN is set then authenticate with it if not ignore
|
|
if [[ -z ${GITHUB_TOKEN} ]]; then
|
|
echo "GITHUB_TOKEN is not set. Please set it before running this script."
|
|
exit 1
|
|
else
|
|
gh auth login --with-token <<<"${GITHUB_TOKEN}"
|
|
fi
|
|
}
|
|
|
|
function get_deps() {
|
|
go_install go-task/task/v3/cmd/task@latest
|
|
go_install x-motemen/ghq@latest
|
|
go_install a-h/templ/cmd/templ@latest
|
|
|
|
cargo_install ripgrep
|
|
cargo_install fd-find
|
|
cargo_install eza
|
|
|
|
uv_install aider-chat
|
|
}
|
|
|
|
function clone_repos() {
|
|
ghq get github.com/onsonr/sonr
|
|
ghq get github.com/onsonr/nebula
|
|
ghq get github.com/onsonr/hway
|
|
}
|
|
|
|
function main() {
|
|
get_deps
|
|
set_git
|
|
}
|
|
|
|
main
|