Go to file
Daniel Ternyak 81566a3097 add boilerplate setup instructions 2017-04-12 00:06:09 -05:00
common create react/redux boilerplate 2017-04-12 00:04:27 -05:00
jest_config create default jest config 2017-04-12 00:01:02 -05:00
webpack_config create webpack config with less support for both dev and prod 2017-04-11 23:59:58 -05:00
.babelrc create babelcrc with flow support 2017-04-11 23:58:49 -05:00
.eslintrc.json create eslint 2017-04-11 23:59:11 -05:00
.flowconfig create flowconfig 2017-04-12 00:01:57 -05:00
.gitignore add .idea to gitignore 2017-04-12 00:01:39 -05:00
LICENSE Initial commit 2016-12-04 02:35:28 +01:00
README.md add boilerplate setup instructions 2017-04-12 00:06:09 -05:00
package.json create package.json 2017-04-12 00:00:48 -05:00

README.md

MyEtherWallet

MyEtherWallet (v4+)

What is it?

Production-ready, optimized, robust, fully-featured boilerplate/example.

Includes:

Usage

git clone https://github.com/Metnew/react-semantic.ui-starter.git
cd react-semantic.ui-starter && rm -rf .git  
npm install

Run:

npm run dev # run app in dev mode
npm run db  # run mock db for app(from another process)

Build:

npm run build # build app

It generates app in dist folder.

Test:

npm run test # run tests with Jest

Folder structure:

│ Reatty
├── common - Your App
│   └── actions - application actions
│   ├── api - Services and XHR utils(also custom form validation, see InputComponent from components/common)
│   ├── components - components according to "Redux philosophy"
│   ├── config - frontend config depending on REACT_WEBPACK_ENV
│   ├── containers - containers according to "Redux philosophy"
│   ├── reducers - application reducers
│   ├── routing - application routing
│   ├── styles - styles folder with scss vars, mixins, etc.
│   ├── index.jsx - entry
│   ├── index.html
├── db // mock db
├── static - static assets(imgs, media)
├── webpack_config - Webpack configuration
├── jest_config - Jest configuration