anuma-desktop
v1.0.0
Published
Anuma Desktop
Maintainers
Readme
Anuma Desktop
Anuma Desktop is a dedicated desktop process manager for Anuma node.
Anuma Desktop process configuration (available via a simple JSON editor) allows user to specify command-line arguments for executables, as such it is possible to configure it to run multiple instances of Anuma or potentially run multiple networks simultaneously (provided Anuma nodes do not pro-actively auto-discover each-other).
Like many desktop applications, Anuma Desktop can run in the tray bar, out of the way.
Anuma Desktop is built using NWJS and is compatible Windows, Linux and Mac OS X.
Building Anuma Desktop
Pre-requisites
NOTE: Anuma Desktop build process builds and includes latest
Anuma binaries from Git master branches. To build from specific
branches, you can use --branch... flags (see below).
Generating Anuma Desktop installers
To build and deploy Anuma Desktop production-ready builds, do the following:
mkdir anuma-build
cd anuma-build
npm install emanator@latest
git clone https://github.com/AnumaNetwork/anuma-desktop
cd anuma-desktopEmanator will help to create standalone desktop applications using NWJS. It accepts the following flags:
--portablewill create a portable zipped application.--innosetupwill generate Windows setup executable.--dmgwill generate a DMG image for macOS.--allwill generate all OS compatible packages.
Additionally the following flags can be used to reset the environment:
--cleanclean build folders: purges clonedGOPATHfolder--resetdeletes downloaded/cached NWJS and NODE binaries
The --clean and --reset can be combined to cleanup build folder
and cached files.
DMG - Building DMG images on macOS requires sudo access in order to
use system tools such as diskutil to generate images:
sudo ../node_modules/.bin/emanate build --dmgTo build the Windows portable deployment, run the following command:
../node_modules/.bin/emanate build --archive --portableTo build the Windows installer, you need to install Innosetup and run:
../node_modules/.bin/emanate build --innosetupEmanator stores build files in the ~/emanator folder.
Running Anuma Desktop from development environment
In addition to Node.js (must be 14.0+), please download and install
Latest NWJS SDK https://nwjs.io - make sure that
nw executable is available in the system PATH and that you can run
nw from command line.
On Linux / Darwin, as good way to install node and nwjs is as
follows:
cd ~/
mkdir bin
cd bin
wget https://nodejs.org/dist/v14.4.0/node-v14.4.0-linux-x64.tar.xz
tar xvf node-v14.4.0-linux-x64.tar.xz
ln -s node-v14.4.0-linux-x64 node
wget https://dl.nwjs.io/v0.46.2/nwjs-sdk-v0.46.2-linux-x64.tar.gz
tar xvf nwjs-sdk-v0.46.2-linux-x64.tar.gz
ln -s nwjs-sdk-v0.46.2-linux-x64 nwjs
Once done add the following to ~/.bashrc
export PATH="~/bin/node/bin:~/bin/nwjs:${PATH}"The above method allows you to deploy latest binaries and manage
versions by re-targeting symlinks pointing to target folders.
Once you have node and nwjs working, you can continue with
Anuma Desktop.
Anuma Desktop installation:
git clone https://github.com/AnumaNetwork/anuma-desktop
cd anuma-desktop
npm install
npm install emanator@latest
node_modules/.bin/emanate --local-binaries
nw .Building installers from specific Anuma Git branches
The --branch argument specifies common branch name for Anuma, for
example:
node_modules/.bin/emanate --branch=2024_initial_anuma_supportThe branch for each repository can be overriden using
--branch-<repo-name>=<branch-name> arguments as follows:
emanate --branch=2024_initial_anuma_support --branch-anumad=2024_fixes_nextAnuma Desktop Process Manager
Configuration
Anuma Desktop runtime configuration is declared using a JSON object.
Each instance of the process is declared using it's type (for
example: anumad) and a unique identifier (kd0). Most
process configuration objects support args property that allows
passing arguments or configuration options directly to the process
executable. The configuration is passed via configuration file
(anumad).
Supported process types:
anumad- Anuma full node
NOTE: For Anuma, to specify multiple connection endpoints,
you must use an array of addresses as follows: "args" : { "connect" : [ "peer-addr-port-a", "peer-addr-port-b", ...] }
Default Configuration File
{
"description": "Anumad Node",
"modules": {
"anumad:kd0": {
"reset-peers": false,
"args": {
"rpclisten": "0.0.0.0:42110",
"listen": "0.0.0.0:42111",
"profile": 8110
},
"upnpEnabled": true
}
},
"ident": "anumad-node-only",
"network": "mainnet",
"upnpEnabled": true,
"dataDir": "",
"theme": "light",
"invertTerminals": false,
"compounding": {
"auto": false,
"useLatestAddress": false
}
}Data Storage
Anuma Desktop stores it's configuration file as
~/.anuma-desktop/config.json. Each configured process data is
stored in <datadir>/<process-type>-<process-identifier> where
datadir is a user-configurable location. The default datadir
location is ~/.anuma-desktop/data/. For example, anumad
process with identifier kd0 will be stored in
~/.anuma-desktop/data/anumad-kd0/ and it's logs in
~/.anuma-desktop/data/anumad-kd0/logs/anumad.log.
Anuma Binaries
Anuma Desktop can run Anuma from two locations:
- From integrated
binfolder that is included with Anuma Desktop redistributables. - Fron
~/.anuma-desktop/binfolder that is created during the Anuma build process.
