Files
mycelium/buildenv.sh
T
despiegk 29fe1199e1 Add build scripts and update README with getting started guide
- Add Makefile, buildenv.sh, and scripts/build_lib.sh for build automation
- Add "Get Started" section to README with quick clone and run instructions
- Improve README table formatting for bootstrap nodes
- Update example peers command with better formatting and --tun-name option

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-04-07 07:36:24 +02:00

15 lines
499 B
Bash

#!/usr/bin/env bash
# Project identity
export PROJECT_NAME="mycelium"
# Binaries to build (produced by myceliumd and myceliumd-private workspaces)
export BINARIES="mycelium mycelium-private"
# Cargo feature flags — no extra features for default build
# Note: binaries live in separate sub-workspaces (myceliumd/, myceliumd-private/)
# and are built with --manifest-path in the Makefile rather than build_binaries()
export ALL_FEATURES="default"
export VERSION="0.7.5"
export PATCHLEVEL="patch"