Where should i create django apps in django 1.4?

前端 未结 1 562
情歌与酒
情歌与酒 2020-12-12 01:19

I\'ve just started a new project in django 1.4 and since they\'ve changed the default layout for manage.py and the whole folder hierarchy (see https://docs.djangoproject.com

相关标签:
1条回答
  • 2020-12-12 01:42

    The second way.

    manage.py
    myapp/
        __init__.py
        models.py
    mysite/
        __init__.py
        settings.py
        urls.py
    
    0 讨论(0)
提交回复
热议问题