wechat starter
1.0.0
在rails中开发微信的模板。
使用 Eric-Guo/微信处理消息
使用 weui 和 weui-rails 的 UI 库
使用 jasl/wx_pay 支付
OAuth2 与 Skinnyworm/omniauth-wechat-oauth2
服务号由Le Wagon上海赞助
要求
PostgreSQL
配置“服务器地址”为http://your-domain.com/wechat
配置“授权测试目录”为http://your-domain.com/
安装
创建您的新项目并将此存储库添加为模板
mkdir your_app
cd your_app
git init
git remote add template https://github.com/Eric-Guo/wechat-starter.git
git fetch template
git checkout -b master template/master
bundle install
rake db:create
rake db:migrate
创建config/application.yml
并配置以下信息:
wechat_app_id : " AppID "
wechat_secret : " AppSecret "
wechat_token : " Token "
wechat_encoding_aes_key : " EncodingAESKey "
wechat_trusted_domain_fullname : " http://your_dev.proxy.qqbrowser.cc "
# following is optional if you don't need wechat pay
wechat_pay_mch_id : " merchant id "
wechat_pay_api_key : " 32 bits api key configured in pay.weixin.qq.com "
wechat_pay_notify_url : " url to accept pay result notification "
启动服务器
puma -C config/puma.rb
从 config 文件夹中选择菜单取决于Rails.env
。
例如,如果Rails.env == production
,则选择config/menu_production.yaml
。
# create menu
rake wechat:menu_create
# show menu
rake wechat:menu