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"
관련 글
0001_initial.py
0001_initial.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/migrations/0001_initial.py).
글 읽기 →models.py
models.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/models.py).
글 읽기 →urls.py
urls.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/urls.py).
글 읽기 →views.py
views.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/views.py).
글 읽기 →manage.py
manage.py — python source code from the python backend learning materials (python_backend/curriculum/django/manage.py).
글 읽기 →asgi.py
asgi.py — python source code from the python backend learning materials (python_backend/curriculum/django/myproject/asgi.py).
글 읽기 →