Skip to content

Latest commit

 

History

History
64 lines (58 loc) · 1.4 KB

README.md

File metadata and controls

64 lines (58 loc) · 1.4 KB

Client_

.
├── README.md
├── app
│   ├── 404.html
│   ├── actions
│   │   └── index.js
│   ├── components
│   │   ├── App
│   │   │   └── index.js
│   │   ├── Footer
│   │   │   └── index.js
│   │   ├── Navigation
│   │   │   └── index.js
│   │   ├── Routes
│   │   │   └── index.js
│   ├── constants
│   │   └── action-types.js
│   ├── index.html
│   ├── index.js
│   └── reducers
│       ├── index.js
├── assets
│   ├── favicon.ico
│   └── styles
│       ├── components
│       │   ├── App.scss
│       └── index.scss
├── dist
│   └── report.html
├── package.json
├── webpack.config.build.js
├── webpack.config.dev.js
├── webpack.config.js

Requirements

You only need node.js pre-installed and you’re good to go.

Setup

Install dependencies

$ yarn install

Development

Run the local webpack-dev-server with livereload and autocompile on http://localhost:8081/

$ yarn dev

Deployment

Build the current application

$ yarn build

Stats

Check the stats of the bundle

$ yarn stats