This is a developer messaging dapp on the nOS platform with incentivisation.
$ cd my-dapp-name
$ yarn start
Change README.md
and package.json
to fit your project needs. Delete LICENSE
if not applicable.
Use yarn test:local
or npm run test:local
to run all tests locally. The test
command is reserved for CI builds.
react-stack-boilerplate
├── src
│ ├── __helpers__
│ ├── __mocks__
│ ├── assets
│ ├── components
│ │ ├── __tests__
│ │ ├── Header
│ │ ├── NOSActions
│ │ └── SpinningLogo
│ └── views
│ ├── __tests__
│ │ └── __snapshots__
│ └── App
├── .babelrc
├── .eslintignore
├── .eslintrc
├── .gitignore
├── .prettierrc
├── jest.config.js
├── jest.setup.js
├── LICENSE
├── logo.png
├── package.json
├── README.md
└── yarn.lock
- Build assets to dedicated subdirectory parcel-bundler/parcel#233