A Status client reference implementation using status-js
Go to file
Iuri Matias 39fa9de3c9
Merge pull request #15 from status-im/update_readme
update README to remove geth instructions
2018-12-20 16:17:01 -05:00
.github initial commit 2018-11-08 12:51:41 -05:00
.vscode initial commit 2018-11-08 12:51:41 -05:00
app Merge pull request #14 from status-im/use_murmur 2018-12-20 16:12:18 -05:00
configs initial commit 2018-11-08 12:51:41 -05:00
flow-typed initial commit 2018-11-08 12:51:41 -05:00
internals initial commit 2018-11-08 12:51:41 -05:00
resources initial commit 2018-11-08 12:51:41 -05:00
test initial commit 2018-11-08 12:51:41 -05:00
.dockerignore initial commit 2018-11-08 12:51:41 -05:00
.editorconfig initial commit 2018-11-08 12:51:41 -05:00
.eslintignore initial commit 2018-11-08 12:51:41 -05:00
.eslintrc initial commit 2018-11-08 12:51:41 -05:00
.flowconfig initial commit 2018-11-08 12:51:41 -05:00
.gitattributes initial commit 2018-11-08 12:51:41 -05:00
.gitignore initial commit 2018-11-08 12:51:41 -05:00
.prettierrc initial commit 2018-11-08 12:51:41 -05:00
.stylelintrc initial commit 2018-11-08 12:51:41 -05:00
.testcafe-electron-rc initial commit 2018-11-08 12:51:41 -05:00
.travis.yml initial commit 2018-11-08 12:51:41 -05:00
CHANGELOG.md initial commit 2018-11-08 12:51:41 -05:00
LICENSE initial commit 2018-11-08 12:51:41 -05:00
README.md update README 2018-12-20 16:13:31 -05:00
appveyor.yml initial commit 2018-11-08 12:51:41 -05:00
babel.config.js initial commit 2018-11-08 12:51:41 -05:00
package.json use murmur 0.1.4 2018-12-19 13:53:55 -05:00
renovate.json initial commit 2018-11-08 12:51:41 -05:00
yarn.lock use murmur 0.1.4 2018-12-19 13:53:55 -05:00

README.md

A Status client reference implementation using Status-JS.

WIP. DO NOT USE IN PRODUCTION. HIGH RISK ⚠



Install

clone the repo via git:

git clone https://github.com/status-im/status-js-desktop.git

And then install the dependencies with yarn.

$ cd status-js-desktop
$ yarn

Run

Start the app in the dev environment. This starts the renderer process in hot-module-replacement mode and starts a webpack dev server that sends hot updates to the renderer process:

$ yarn dev

If you don't need autofocus when your files was changed, then run dev with env START_MINIMIZED=true:

$ START_MINIMIZED=true yarn dev

Packaging

To package apps for the local platform:

$ yarn package

To package apps for all platforms:

First, refer to the Multi Platform Build docs for dependencies.

Then,

$ yarn package-all

To package apps with options:

$ yarn package --[option]

To run End-to-End Test

$ yarn build-e2e
$ yarn test-e2e

# Running e2e tests in a minimized window
$ START_MINIMIZED=true yarn build-e2e
$ yarn test-e2e

💡 You can debug your production build with devtools by simply setting the DEBUG_PROD env variable:

DEBUG_PROD=true yarn package

CSS Modules

This boilerplate is configured to use css-modules out of the box.

All .css file extensions will use css-modules unless it has .global.css.

If you need global styles, stylesheets with .global.css will not go through the css-modules loader. e.g. app.global.css

If you want to import global css libraries (like bootstrap), you can just write the following code in .global.css:

@import '~bootstrap/dist/css/bootstrap.css';

SASS support

If you want to use Sass in your app, you only need to import .sass files instead of .css once:

import './app.global.scss';

Static Type Checking

This project comes with Flow support out of the box! You can annotate your code with types, get Flow errors as ESLint errors, and get type errors during runtime during development. Types are completely optional.

Dispatching redux actions from main process

See #118 and #108