An open API service indexing awesome lists of open source software.

https://github.com/mobius-network/dapp-store

Mobius DApp Store
https://github.com/mobius-network/dapp-store

Last synced: 5 months ago
JSON representation

Mobius DApp Store

Awesome Lists containing this project

README

          

# Mobius Network DApp Store

**Contents**

- [Getting started](#getting-started)
- [Project structure](#project-structure)
- [Scaffolding](#scaffolding)

## Getting started

```sh
yarn start
```

## Build

### Beta

```sh
yarn run build:beta
```

### Production

```sh
yarn run build:production
```

## Project structure

```sh
├── config # Configs
├── src # Sources
│ ├── components # All UI components
│ │ ├── Feature # Hierarchy of components grouped by feature
│ │ ├── shared # Components shared across features
│ ├── state # State related modules
│ │ ├── Feature # Reducers, actions, sagas, selectors grouped by feature
│ │ ├── utils # Redux related utils
│ ├── assets # Static assets
│ ├── utils # General purpose utility functions
│ └── styles
└── templates # Scaffolding templates
```

## Scaffolding

Generate a component:

```sh
yarn create:component
```

Generate a state feature

```sh
yarn create:state
```