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

https://github.com/ChanMo/django-wechat-feedback

基于django和wechat的留言反馈模块
https://github.com/ChanMo/django-wechat-feedback

Last synced: 12 months ago
JSON representation

基于django和wechat的留言反馈模块

Awesome Lists containing this project

README

          

基于django-wechat-member的留言系统
===================================

快速开始
---------

安装django-wechat-feedback:

.. code-block::

pip install django-wechat-feedback

在settings.py文件中添加feedback:

.. code-block::

INSTALLED_APPS = (
...
'feedback',
)

在urls.py文件中添加:

.. code-block::

url(r'^feedback/', include('feedback.urls')),

更新数据库:

.. code-block::

python manage.py migrate