-
Notifications
You must be signed in to change notification settings - Fork 23
Build it yourself
This wiki explains how you can build the app installers yourself or start the app without using any installers from the release page.
- Git
- Node.js (tested with v8.11.4)
- Python 2.7.15
- Build Tools for Visual Studio 2017 (Windows only)
-
Clone the repository
git clone https://github.com/klayveR/xenontrade.git
-
Install dependencies
npm install
If Python 2.7.15 can't be found by node-gyp, try
npm config set python "c:\Python27\python.exe"
-
Build executable
npm run dist-win
The setup executable will be created in the dist
directory.
If you don't want to create an executable, you can simply run the app with npm start
after cloning the repository.
-
Clone the repository
git clone https://github.com/klayveR/xenontrade.git
-
Install dependencies
npm install
-
Build executables
npm run dist-linux
The .AppImage
will be created in the dist
directory. You can also package .deb
and .rpm
by editing the build.linux.target
property in package.json
. Please note that when using a packaged .deb
or .rpm
, the auto-update does not function.
If you don't want to create an executable, you can simply run the app with npm start
after cloning the repository.