mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-05-14 03:15:08 +00:00
29fe1199e1
- 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>
15 lines
499 B
Bash
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"
|