Connecting Mentor & Elite With Lightweight Platform.
小红花小程序是链接校内优秀人才与海鲸基金会的轻量级信息共享交流平台。
该仓库是项目的前端代码仓库,开发框架采用wepy
。
主要分为两个分支:
pull
操作或者fetch
操作以获取最新的远程代码。$ git clone https://github.com/TGclub/FLWAPP.git
$ cd FLWAPP
$ npm install
// 如果有cnpm,请用cnpm下载依赖
$ npm run dev
在微信开发者工具打开项目时,请选中项目内的
/dist
目录。因为dist
目录里才是微信能识别的wxml
和wxss
。
$ npm run test
|── README.md
├── src
│ ├── app.wpy // 源代码的编译入口文件
│ ├── components // 组件
│ └── pages // 页面
── dist
│ ├── app.js // 程序入口文件
│ ├── app.json
│ ├── app.wxss
│ ├── npm // wepy框架依赖代码
│ ├── pages // 编译后页面
│ └── static // 静态资源文件目录
--- scripts // 开发调试时脚本
--- test // 测试用例(和src目录相映射)