wechat starter
1.0.0
Modelo para desenvolvimento de wechat em Rails.
Processar mensagens com Eric-Guo/wechat
Biblioteca UI usando weui com weui-rails
Pague com jasl/wx_pay
OAuth2 com skinnyworm/omniauth-wechat-oauth2
Conta de serviço patrocinada pela Le Wagon Shanghai
Requisitos
PostgreSQL
Configure "服务器地址" como http://your-domain.com/wechat
Configure "测试授权目录" como http: http://your-domain.com/
Instalar
Crie seu novo projeto e adicione este repositório como modelo
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
Crie config/application.yml
e configure as seguintes informações:
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 "
Iniciar servidor
puma -C config/puma.rb
Depende do Rails.env
escolher o menu da pasta de configuração.
Por exemplo, se Rails.env == production
, então config/menu_production.yaml
é escolhido.
# create menu
rake wechat:menu_create
# show menu
rake wechat:menu