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
- Host: GitHub
- URL: https://github.com/mobius-network/dapp-store
- Owner: mobius-network
- Created: 2018-05-07T12:29:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T15:44:24.000Z (over 3 years ago)
- Last Synced: 2025-04-03T22:36:29.675Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://store.mobius.network
- Size: 4.26 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
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
```