gitextract_iu6wfhn7/ ├── .gitattributes ├── README.md ├── dailyfresh/ │ ├── .idea/ │ │ ├── dailyfresh.iml │ │ ├── dictionaries/ │ │ │ └── smart.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── apps/ │ │ ├── __init__.py │ │ ├── cart/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── migrations/ │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── goods/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── search_indexes.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── order/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── alipay_public_key.pem │ │ │ ├── app_private_key.pem │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20171113_1813.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── user/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── celery_tasks/ │ │ ├── __init__.py │ │ └── tasks.py │ ├── dailyfresh/ │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── dailyfresh.sql │ ├── db/ │ │ ├── __init__.py │ │ └── base_model.py │ ├── manage.py │ ├── static/ │ │ ├── cart(1).html │ │ ├── css/ │ │ │ ├── main.css │ │ │ └── reset.css │ │ ├── detail.html │ │ ├── index.html │ │ ├── js/ │ │ │ ├── jquery.cookie.js │ │ │ ├── register.js │ │ │ └── slide.js │ │ ├── list.html │ │ ├── login.html │ │ ├── place_order.html │ │ ├── register.html │ │ ├── test.html │ │ ├── user_center_info.html │ │ ├── user_center_order.html │ │ └── user_center_site.html │ ├── templates/ │ │ ├── base.html │ │ ├── base_detail_list.html │ │ ├── base_no_cart.html │ │ ├── base_user_center.html │ │ ├── cart.html │ │ ├── detail.html │ │ ├── index.html │ │ ├── list.html │ │ ├── login.html │ │ ├── order_comment.html │ │ ├── place_order.html │ │ ├── register.html │ │ ├── search/ │ │ │ ├── indexes/ │ │ │ │ └── goods/ │ │ │ │ └── goodssku_text.txt │ │ │ ├── search.html │ │ │ └── search1.html │ │ ├── static_base.html │ │ ├── static_index.html │ │ ├── user_center_info.html │ │ ├── user_center_order.html │ │ └── user_center_site.html │ ├── utils/ │ │ ├── __init__.py │ │ ├── fdfs/ │ │ │ ├── __init__.py │ │ │ ├── client.conf │ │ │ └── storage.py │ │ └── mixin.py │ ├── uwsgi.ini │ ├── uwsgi.log │ ├── uwsgi.pid │ ├── uwsgi2.ini │ ├── uwsgi2.log │ ├── uwsgi2.pid │ └── whoosh_index/ │ └── _MAIN_0.toc └── requirements.txt