Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
/ lisk-nano Public archive

🖥 Minimal Lisk graphical user interface for desktop

License

Notifications You must be signed in to change notification settings

LiskArchive/lisk-nano

Repository files navigation

Lisk Nano

Build Status Coverage Status License: GPL v3

Development

git clone https://github.com/LiskHQ/lisk-nano.git
cd lisk-nano
npm install
npm run dev

Open http://localhost:8080

Build

npm run build

Electron

Start

Start the Electron client.

npm run start

Windows

Build package for Windows.

npm run dist:win

Mac OS X

Build package for Mac OS X.

npm run dist:mac

Linux

Build package for Linux.

npm run dist:linux

Run unit tests

Single run

npm run test

Run each time a file changes

npm run test-live

Run end-to-end tests

Setup

To setup protractor as described on http://www.protractortest.org/#/ run:

npm install -g protractor
webdriver-manager update
webdriver-manager start

Setup a lisk test node to run on localhost:4000 as described in https://github.com/LiskHQ/lisk#tests

Make sure that the Lisk version of the node matches version in https://github.com/LiskHQ/lisk-nano/blob/development/src/app/services/peers/peer.js#L16

Run

Start the development version of lisk-nano:

npm run dev

Run the protractor tests (replace ~/git/lisk/ with your path to lisk core):

./e2e-test-setup.sh ~/git/lisk/
npm run e2e-test

Launch React Storybook

To launch storybook sandbox with components run

npm run storybook

and go to

http://localhost:6006/

Authors

License

Copyright © 2016-2017 Lisk Foundation

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.


This program also incorporates work previously released with lisk-nano 0.1.2 (and earlier) versions under the MIT License. To comply with the requirements of that license, the following permission notice, applicable to those parts of the code only, is included below:

Copyright © 2016-2017 Lisk Foundation Copyright © 2015 Crypti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.