要知道想要搭建一个django项目,首先你要对django的目录结构有所了解。然后才能搭建一个完整的项目
目录结构
wxGroupServer(项目名称)
–apps(即使是“小”工程,也建议分成多个app,每个app足够简单,只解决某一个方面的问题)
----index(自定义app)
------migrations
------static(app的静态文件)
------templates(app的模板文件)
------tests(app级别的测试代码)
--------init.py
--------test_models.py
--------test_views.py
------init.py
------admin.py
------apps.py
------models.py
------tests.py
------urls.py
------views.py
–libs(加载第三方模块,可以避免版本冲突,按照标准的site-packages管理)
–static(静态内容)
----css
----fonts
----js
----images
–templates(模板目录,覆盖app的模板)
----common
----example
----404.html
----500.html
----base.html
----copyright.html
----detail_example.html
----nav.html