opendexnetwork / opendex-desktop

App to set up a environment, provide liquidity, trade and access remote OpenDEX environments 🖥️
https://opendex-desktop.app
GNU Affero General Public License v3.0
2 stars 1 forks source link

OpenDEX Desktop

A graphical user interface for setting up and/or interacting with an opendex-docker environment.

Getting started

[proxy]
disabled = false
expose-ports = ["8889"]

Application logs

Logs are written to the following locations

Application data

Application data is stored in the following locations

Development

Requirements

Install dependencies

yarn

Start in development mode

Windows (Powershell)

($env:HTTPS = "true") -and (yarn start)

Linux, macOS (Bash)

HTTPS=true yarn start

Tests

yarn test

Lint

yarn lint

Building an executable

yarn build to build for an OS the command is executed from.

Building Windows executable under Linux

For Debian based distributions you'll need additional dependencies

sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install wine wine32

To build

yarn build --win