Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/liyingxuan/ont-dapp-store

Ontology dApp Store : https://dapp.ont.io/
https://github.com/liyingxuan/ont-dapp-store

Last synced: 4 days ago
JSON representation

Ontology dApp Store : https://dapp.ont.io/

Awesome Lists containing this project

README

        

# dApp Store
> 原 https://dapp.ont.io/ 项目,后将持续改进成一个支持全平台公链的dApp Store。

### 使用vue/cli 3.x
```bash
yarn global add @vue/cli
```

##### 配置文件
> Vue-CLI3改变了项目结构,之前的配置文件方式改变了,需要自己新建几个文件

新建 .env、 .env.local、vue.config.js 文件
> 在项目中,也就是src中使用环境变量的话,必须以VUE_APP_开头。例:
直接输出:console.log(process.env.VUE_APP_SECRET)

### 项目开发
安装package、运行项目、代码格式校验:
```
yarn
yarn dev
yarn fix
```

[VueJS & WebStorm 使用eslint格式化代码](https://www.jianshu.com/p/687b6e96458a)
快捷键:Command + Option + Shift + p

### 项目部署
安装package、打包编译:
```
yarn
yarn build
```
> 复制dist目录下所有文件到apache/nginx指定根目录下即可完成部署。