Skip to content

Commit 8263391

Browse files
authored
Merge pull request #2 from VerusCoin/verus-dev
Verus config.
2 parents 59a431f + 1e754c9 commit 8263391

5 files changed

Lines changed: 6550 additions & 13 deletions

File tree

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ sudo apt-get install -y build-essential
1818
git clone https://github.com/veruscoin/agama --recursive --branch dev --single-branch
1919
```
2020
with this command you git clone agama - but explicitly just the dev branch (therefore --single-branch) which we also use for the release packages.
21+
It also gets the wrong sub-project stuff, so fix that next:
22+
```shell
23+
cd gui\EasyDEX-GUI
24+
git remote add org https://github.com/VerusCoin/EasyDEX-GUI.git
25+
git checkout dev
26+
git pull org dev
27+
```
2128
2) Get the binary artfacts into place (linux version)
2229
```shell
2330
cd agama
@@ -32,7 +39,7 @@ npm install electron-prebuilt -g --unsafe-perm=true
3239
```
3340
4) get webpack dependencies into place for the react stuff
3441
```shell
35-
npm install && npm install webpack webpack-dashboard
42+
npm install
3643
```
3744
5) Now get the react stuff installed and running
3845
```shell
@@ -69,9 +76,9 @@ Note the View menu Toggle Developers Tools option. Enabling that brings up the b
6976
11) If you modify code under gui/EasyDEX-GUI then you'll need to go to gui/EasyDEX-GUI/react/src and run npm run build again, then relaunch npm start from the agama dir. Changes to agama/routes just require relaunching npm start from the agama dir. If any dependencies change then you'll need to rerunnpm install in the appropriate directory.
7077
12) Once you have your changes ready and working you can produce the Linux executable image
7178
### Important dev notes
72-
Coin info for Verus is stored in ~/.komodo/VERUS under Ubuntu
73-
Coin info for Verus is stored under \Users\<username>\AppData\Roaming\Komodo\VERUS for Windows
74-
Coin info is for Verus is stored under ~/Library/Application\ Support/Komodo/VERUS for Mac
79+
Coin info for Verus is stored in ~/.komodo/VRSC under Ubuntu
80+
Coin info for Verus is stored under \Users\<username>\AppData\Roaming\Komodo\VRSC for Windows
81+
Coin info is for Verus is stored under ~/Library/Application\ Support/Komodo/VRSC for Mac
7582
#### Sockets.io
7683
In dev mode backend is configured to send/receive messages from/to http://127.0.0.1:3000 address. If you open it as http://localhost:3000 sockets server will reject any messages. In non dev mode the service is launched internally and everything operates normally.
7784

0 commit comments

Comments
 (0)