WizzStudio / FLWAPP

Connecting Mentor & Elite With Lightweight Platform.
5 stars 2 forks source link

Red Flower Project

Connecting Mentor & Elite With Lightweight Platform.

目录

背景

小红花小程序是链接校内优秀人才与海鲸基金会的轻量级信息共享交流平台。

该仓库是项目的前端代码仓库,开发框架采用wepy

分支说明

主要分为两个分支:

安装

克隆仓库

$ git clone https://github.com/TGclub/FLWAPP.git

进入文件目录

$ cd FLWAPP

下载依赖

$ npm install
// 如果有cnpm,请用cnpm下载依赖

进入开发模式

$ npm run dev

在微信开发者工具打开项目时,请选中项目内的/dist目录。因为dist目录里才是微信能识别的wxmlwxss

运行测试

$ npm run test

项目结构图

|── README.md
├── src
│   ├── app.wpy // 源代码的编译入口文件
│   ├── components // 组件
│   └── pages // 页面
── dist
│   ├── app.js // 程序入口文件
│   ├── app.json
│   ├── app.wxss
│   ├── npm // wepy框架依赖代码
│   ├── pages // 编译后页面
│   └── static // 静态资源文件目录
--- scripts // 开发调试时脚本
--- test // 测试用例(和src目录相映射)

开发进展