Qortal UI - Main Code Repository A User Interface for the Qortal Blockchain Project. Truly decentralized web hosting, application hosting, communications, data storage, and full infrastructure for the future global decentralized digital world.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
AlphaX-Projects 15121ea1ea
Update APT
3 years ago
build Minimum Needed 3 years ago
config
img replaced 3 years ago
qortal-ui-core Change QORT to Qortal 3 years ago
qortal-ui-crypto Improved error message when attempting to create a transaction with no reference transaction (which in practice is the same thing as having a zero balance). 3 years ago
qortal-ui-plugins Fix blank my orders grid after listed 3 years ago
scripts Update APT 3 years ago
snap New Release 3 years ago
.editorconfig
.gitattributes
.gitignore
.travis.yml New Xcode 3 years ago
CONTRIBUTING.md
LICENSE
README.md Update README.md 3 years ago
build-setup.js
build.bat
build.js
build.sh Made build script executable 3 years ago
electron-builder.yml Update for 1.7.0 3 years ago
electron.js Update Button 3 years ago
install-dependencies.sh
package.json update 1.7.3 3 years ago
push-updates-with-travis-build.sh
run_server.bat
server.js
set-up-snap.sh
update-package-json.js
watch-inline.js
watch.js

README.md

Qortal Project UI

License Discord

Decentralizing The World

Building and Running Qortal UI Server from source:

Follow the steps below to download, install, build and run Qortal UI locally on Linux.

Installation

Packages required:

  • Node.js
  • npm
  • yarn

Easiest way to install the lastest required packages on Linux is via nvm.

sudo apt update && sudo apt install curl -y
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
source ~/.profile (For Debian based distro)
source ~/.bashrc (For Fedora / CentOS)
nvm ls-remote (Fetch list of available versions)
nvm install v14.17.0 (Latest LTS: Fermium as of writing)
npm -g install yarn

On BSD do a pkg_add node followed by npm install -g yarn

Adding via binary package mirror will only work if you have set the package path. You can do a node or java build via ports instead by downloading ports with portsnap fetch method.

Verify your installtion with node --version

  • If you have an older installation of npm, please do not forget to update that with npm update -g.

Clone the main UI repo

  • git clone https://github.com/Qortal/qortal-ui.git

Installation and linking

In qortal-ui-core/, qortal-ui-plugins/, qortal-ui-crypto/ directories, run:

yarn install
yarn link

Finally, in the qortal-ui directory, run:

yarn link qortal-ui-core
yarn link qortal-ui-plugins
yarn link qortal-ui-crypto

Build UI server and files

In qortal-ui directory, run:

yarn run build

Start UI Server ( preferred way )

yarn run server &

The "&" at the end puts the UI server in the background.

Run UI using electron

yarn run start-electron

Build script (unix-like systems only)

To automate the above process, run ./build.sh, optionally specifying the following options:

-s: run UI server after completing the build
-e: run electron server after completing the build
-f: force relink and reinstall dependencies
-h: show help

Example command to build and run the UI server:

./build.sh -s