存储库项目 SiteConf

对于在源代码管理下使用 requirementsdeployment tools 的 Django 项目。这个例子建立在 Django两个 Scoops 的概念之上。他们发布了一个模板

repository/
    docs/
    .gitignore
    project/
        apps/
            blog/
                migrations/
                static/ #( optional )
                    blog/
                        some.css
                templates/ #( optional )
                    blog/
                        some.html
                models.py
                tests.py
                admin.py
                apps.py #( django 1.9 and later )
                views.py
            accounts/
                #... ( same as blog )
            search/
                #... ( same as blog )
        conf/
            settings/
                local.py
                development.py
                production.py
            wsgi
            urls.py
        static/
        templates/
    deploy/
        fabfile.py
    requirements/
        base.txt
        local.txt
    README
    AUTHORS
    LICENSE

这里 appsconf 文件夹分别包含项目的 user created applicationscore configuration folder

project 目录中的 statictemplates 文件夹分别包含整个项目中全局使用的静态文件和 html markup 文件。

所有 app 文件夹 blogaccountssearch 也可能(大部分)包含 statictemplates 文件夹。