https://github.com/chanmo/django-wechat-feedback
基于django和wechat的留言反馈模块
https://github.com/chanmo/django-wechat-feedback
Last synced: 4 months ago
JSON representation
基于django和wechat的留言反馈模块
- Host: GitHub
- URL: https://github.com/chanmo/django-wechat-feedback
- Owner: ChanMo
- License: other
- Created: 2016-01-28T05:24:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-10T08:58:18.000Z (almost 10 years ago)
- Last Synced: 2025-07-12T16:45:42.134Z (12 months ago)
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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