Structure for project in Django [closed]

3

What is the recommended structure to create a project?

/proyecto
/app01
/app02
manage.py

I have 3 doubts:

  • Is an application (app) considered a module in the project?
  • What is a module in Django?
  • What is an application on Django?
asked by Andres Vilca 17.02.2016 в 04:52
source

1 answer

3

To create a Django project it is best that you simply use the startproject command, which already has the whole structure for you to start working.

link

django-admin startproject NUEVO_PROYECTO /home/andres/Dev/nuevo_proyecto

You have a similar command to create a new application.

link

From the project directory, this command creates you a new application:

python manage.py startapp mi_app
    
answered by 17.02.2016 в 09:23