Skip to content

Commit

Permalink
Rename to inertia_django_vite_vue_minimal
Browse files Browse the repository at this point in the history
  • Loading branch information
mujahidfa committed Oct 9, 2022
1 parent 689e78a commit 8f6dc9b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
ASGI config for inertia_django_vite_vue project.
ASGI config for inertia_django_vite_vue_minimal project.
It exposes the ASGI callable as a module-level variable named ``application``.
Expand All @@ -11,6 +11,8 @@

from django.core.asgi import get_asgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue.settings")
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue_minimal.settings"
)

application = get_asgi_application()
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Django settings for inertia_django_vite_vue project.
Django settings for inertia_django_vite_vue_minimal project.
Generated by 'django-admin startproject' using Django 4.1.2.
Expand Down Expand Up @@ -52,7 +52,7 @@
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]

ROOT_URLCONF = "inertia_django_vite_vue.urls"
ROOT_URLCONF = "inertia_django_vite_vue_minimal.urls"

TEMPLATES = [
{
Expand All @@ -70,7 +70,7 @@
},
]

WSGI_APPLICATION = "inertia_django_vite_vue.wsgi.application"
WSGI_APPLICATION = "inertia_django_vite_vue_minimal.wsgi.application"


# Database
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""inertia_django_vite_vue URL Configuration
"""inertia_django_vite_vue_minimal URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.1/topics/http/urls/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
WSGI config for inertia_django_vite_vue project.
WSGI config for inertia_django_vite_vue_minimal project.
It exposes the WSGI callable as a module-level variable named ``application``.
Expand All @@ -11,6 +11,8 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue.settings")
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue_minimal.settings"
)

application = get_wsgi_application()
4 changes: 3 additions & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

def main():
"""Run administrative tasks."""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue.settings")
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "inertia_django_vite_vue_minimal.settings"
)
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
Expand Down

0 comments on commit 8f6dc9b

Please sign in to comment.