Home > Article > Backend Development > Detailed explanation of files generated by Django framework project under Pycharm development python
The directory MyDjangoProject represents the global configuration of the project, which are settings.py, urls.py and wsgi.py,
1. settings.py includes the system's database configuration, application configuration and other configurations ,
2, urls.py represents the configuration of web project Url mapping.
3. The subdirectory student is the app created under the project, including models.py, tests.py, views.py and other files
4. The templates directory is the directory of template files
5 , manage.py is a management tool provided by Django, which can synchronize databases, etc.
The above is the detailed content of Detailed explanation of files generated by Django framework project under Pycharm development python. For more information, please follow other related articles on the PHP Chinese website!