
I just started using django 1.4 and I realized that inside mysite there is another folder called mysite which has the same files as mysite.
Should I work and create files in mysite or mysite/mysite?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Starting with django 1.4, the default project structure changed, moving your main project files down into a packages. Apps will live in packages parallel to the main project.
Updated default project layout and manage.py
Though your layout example does not look like the default 1.4. Models should live in apps that you create. Run the following command in your project:
To get a layout like this: