apps.py
python_backend/curriculum/django/blog/apps.py
from django.apps import AppConfig
class BlogConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "blog"
Artigos relacionados
0001_initial.py
0001_initial.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/migrations/0001_initial.py).
Ler artigo →models.py
models.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/models.py).
Ler artigo →urls.py
urls.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/urls.py).
Ler artigo →views.py
views.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/views.py).
Ler artigo →manage.py
manage.py — python source code from the python backend learning materials (python_backend/curriculum/django/manage.py).
Ler artigo →asgi.py
asgi.py — python source code from the python backend learning materials (python_backend/curriculum/django/myproject/asgi.py).
Ler artigo →